/* ============================================================    /* ============================================================
   PhotoSystem – Public Theme
   Fonts: Inter (Google Fonts)
   Accent colour: gold (#c9a84c)
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Inter',system-ui,-apple-system,sans-serif;color:#1a1a1a;background:#fff;line-height:1.6}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}

/* ── Utilities ────────────────────────────────────────────── */
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 1.5rem}
.section{padding:5rem 0}
.bg-light{background:#f7f7f8}

/* ── Buttons ──────────────────────────────────────────────── */
.btn{display:inline-flex;align-items:center;gap:.45rem;padding:.7rem 1.6rem;border-radius:6px;font-weight:600;font-size:.9rem;border:2px solid transparent;cursor:pointer;transition:all .25s ease}
.btn i{font-size:.85rem}

.btn-gold{background:#c9a84c;color:#fff;border-color:#c9a84c}
.btn-gold:hover{background:#b8933b;border-color:#b8933b;color:#fff}

.btn-outline{background:transparent;color:#fff;border-color:rgba(255,255,255,.6)}
.btn-outline:hover{background:#fff;color:#1a1a1a}

.btn-sm{padding:.45rem 1rem;font-size:.8rem}
.btn-gold-sm{background:#c9a84c;color:#fff;border-color:#c9a84c;padding:.45rem 1rem;font-size:.8rem}
.btn-gold-sm:hover{background:#b8933b}
.btn-outline-sm{background:transparent;color:#1a1a1a;border:1.5px solid rgba(0,0,0,.15);padding:.45rem 1rem;font-size:.8rem}
.btn-outline-sm:hover{border-color:#c9a84c;color:#c9a84c}
.btn-link{background:none;border:none;padding:.4rem 0;color:#c9a84c;font-weight:600;font-size:.8rem}
.btn-link:hover{text-decoration:underline}
/* ── Header ───────────────────────────────────────────────── */
.site-header{position:sticky;top:0;z-index:1000;background:rgba(255,255,255,.97);backdrop-filter:blur(10px);border-bottom:1px solid rgba(0,0,0,.06);padding:.85rem 0}
.site-header .container{display:flex;align-items:center;justify-content:space-between;gap:1.5rem}

.logo a{display:flex;align-items:center;gap:.5rem;font-weight:700;font-size:1.15rem;color:#1a1a1a}
.logo i{color:#c9a84c;font-size:1.25rem}

/* Desktop nav: links */
.main-nav{display:flex;align-items:center;gap:.2rem;flex-shrink:0;white-space:nowrap}
.main-nav ul{display:flex;gap:.15rem;flex-shrink:0;flex-wrap:nowrap}
.main-nav a{display:block;padding:.55rem .9rem;border-radius:6px;font-size:.88rem;font-weight:500;color:#555;transition:all .2s ease}
.main-nav a:hover{color:#c9a84c;background:rgba(201,168,76,.07)}
.main-nav li.active a{color:#c9a84c;font-weight:600}

/* Auth buttons in top bar: always visible */
.header-actions{display:flex;align-items:center;gap:.5rem;flex-shrink:0;margin-left:auto}
.nav-auth-desktop{display:flex;gap:.5rem;align-items:center}
.nav-toggle{display:none;background:none;border:none;font-size:1.4rem;color:#1a1a1a;cursor:pointer;padding:.3rem}

/* ── Mobile (< 960px) ────────────────────────────────────── */
@media(max-width:960px){
    .nav-toggle{display:block}

    /* Slide-out nav panel */
    .main-nav{position:fixed;top:0;left:0;width:280px;height:100vh;background:#fff;box-shadow:4px 0 20px rgba(0,0,0,.1);transform:translateX(-100%);transition:transform .3s ease;padding:4rem 1.5rem 2rem;z-index:1100}
    .main-nav.open{transform:translateX(0)}
    .main-nav ul{flex-direction:column;gap:.25rem}
    .main-nav a{padding:.75rem 1rem;font-size:1rem}
}

/* ── Flash Messages ───────────────────────────────────────── */
.flash{padding:1rem 1.5rem;border-radius:6px;font-size:.9rem;margin:1rem auto;max-width:1200px;display:flex;align-items:center;gap:.5rem}
.flash-success{background:#e6f9ee;color:#1a7a42;border:1px solid #b2e6c7}
.flash-error{background:#fdecea;color:#b42318;border:1px solid #f5c2c0}
.flash-info{background:#e8f4fd;color:#1a6fb5;border:1px solid #bddcf5}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    background:
        linear-gradient(135deg, rgba(26,26,26,0.78), rgba(44,44,44,0.65), rgba(26,26,26,0.78));

    color: #fff;
    padding: 5rem 0 4rem;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.eyebrow{font-size:.8rem;text-transform:uppercase;letter-spacing:.18rem;color:#c9a84c;font-weight:600;margin-bottom:.8rem}
.hero h1{font-size:2.8rem;font-weight:700;line-height:1.15;margin-bottom:1rem}
.hero h1 .accent{color:#c9a84c}
.hero p{font-size:1.1rem;color:rgba(255,255,255,.7);margin-bottom:2rem;max-width:480px}

.hero-actions{display:flex;gap:.8rem;margin-bottom:3rem}

.hero-stats{display:flex;gap:2.5rem}
.stat h3{font-size:1.8rem;font-weight:700;color:#c9a84c}
.stat span{display:block;font-size:.78rem;color:rgba(255,255,255,.55);margin-top:.2rem}

.hero-visual{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.hero-visual img{border-radius:10px;object-fit:cover;width:100%;aspect-ratio:3/4;box-shadow:0 8px 30px rgba(0,0,0,.35)}
.hero-visual img:nth-child(2){margin-top:2rem}
.hero-visual img:nth-child(3){margin-top:-2rem}
.hero-visual img:nth-child(4){margin-top:0}

@media(max-width:768px){
    .hero .container{grid-template-columns:1fr;text-align:center}
    .hero h1{font-size:2rem}
    .hero p{margin-left:auto;margin-right:auto}
    .hero-actions{justify-content:center}
    .hero-stats{justify-content:center}
    .hero-visual{grid-template-columns:1fr 1fr;margin-top:2rem}
    .hero-visual img:nth-child(2),
    .hero-visual img:nth-child(3){margin-top:0}
}

/* ── Hero Slider ─────────────────────────────────────────────── */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.35);
    background: #1a1a1a;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slider-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.slider-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.slider-nav:hover {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #fff;
}

.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: all .3s ease;
}

.slider-dots .dot.active {
    background: #c9a84c;
    transform: scale(1.2);
}

/* Mobile adjustments for slider */
@media(max-width:768px) {
    .hero-slider {
        border-radius: 8px;
    }
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: .9rem;
    }
    .slider-prev { left: 8px; }
    .slider-next { right: 8px; }
    .slider-dots { bottom: 12px; }
}

/* ── Section Headers ──────────────────────────────────────── */
.section-header{text-align:center;margin-bottom:3rem}
.section-header h2{font-size:2rem;font-weight:700;color:#1a1a1a;margin-bottom:.5rem}
.section-header p{font-size:1rem;color:#777;max-width:520px;margin:0 auto}
.subtitle{font-size:1.05rem;color:#777}

/* ── Page Header ──────────────────────────────────────────── */
.page-header-section{background:linear-gradient(135deg,#1a1a1a,#2c2c2c);color:#fff;padding:5rem 0 3.5rem;text-align:center}
.page-header-section h1{font-size:2.4rem;font-weight:700}
.page-header-section .subtitle{color:rgba(255,255,255,.65);margin-top:.5rem}

/* ── Services Grid ────────────────────────────────────────── */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.8rem}
.service-card{background:#fff;border:1px solid #eee;border-radius:12px;padding:2.2rem;text-align:center;transition:all .3s ease}
.service-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,.08);border-color:rgba(201,168,76,.25)}
.service-icon{width:56px;height:56px;border-radius:50%;background:rgba(201,168,76,.1);display:inline-flex;align-items:center;justify-content:center;font-size:1.3rem;color:#c9a84c;margin-bottom:1.2rem}
.service-card h3{font-size:1.1rem;font-weight:600;margin-bottom:.6rem}
.service-card p{font-size:.88rem;color:#666;margin-bottom:1rem}
.service-price{font-size:.85rem;color:#c9a84c;font-weight:600;margin-bottom:1.2rem}
.service-card .btn{margin-top:.5rem}

@media(max-width:768px){.services-grid{grid-template-columns:1fr}}
@media(min-width:769px) and (max-width:1024px){.services-grid{grid-template-columns:repeat(2,1fr)}}

/* ── Packages Grid ────────────────────────────────────────── */
.packages-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.8rem;align-items:start}
.package-card{background:#fff;border:1.5px solid #eee;border-radius:14px;padding:2.5rem 2rem;text-align:center;position:relative;transition:all .3s ease}
.package-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,.08)}
.package-card.popular{border-color:#c9a84c;box-shadow:0  0 4px rgba(201,168,76,.12)}
.package-card.popular:hover{box-shadow:0 0 0 4px rgba(201,168,76,.18),0 12px 32px rgba(0,0,0,.08)}

.badge-popular{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:#c9a84c;color:#fff;padding:.3rem 1.2rem;border-radius:20px;font-size:.75rem;font-weight:600;letter-spacing:.03rem;white-space:nowrap}

.package-card h3{font-size:1.2rem;font-weight:600;margin-bottom:.6rem}
.price{font-size:2rem;font-weight:700;color:#1a1a1a;margin-bottom:1.2rem}
.price::before{font-size:1rem;vertical-align:super;font-weight:500}

.features{display:flex;flex-direction:column;gap:.55rem;margin-bottom:2rem;text-align:left}
.features span{font-size:.88rem;color:#555;display:flex;align-items:center;gap:.5rem}
.features i{color:#c9a84c;font-size:.75rem}

.package-card .btn{width:100%;justify-content:center}

@media(max-width:768px){.packages-grid{grid-template-columns:1fr}}

/* ── Projects Grid ────────────────────────────────────────── */
.projects-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.8rem}
.project-card{border-radius:12px;overflow:hidden;background:#fff;border:1px solid #eee;transition:all .3s ease}
.project-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,.1)}
.project-image{aspect-ratio:4/3;overflow:hidden;background:#f0f0f0}
.project-image img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.project-card:hover .project-image img{transform:scale(1.05)}
.project-info{padding:1.2rem 1.4rem}
.category{font-size:.72rem;text-transform:uppercase;letter-spacing:.12rem;color:#c9a84c;font-weight:600}
.project-info h3{font-size:1rem;font-weight:600;margin:.4rem 0 .8rem}
.project-info .btn{font-size:.78rem}

.placeholder{width:100%;height:100%;min-height:180px;display:flex;align-items:center;justify-content:center;background:#f0f0f0;color:#ccc;font-size:2.5rem}

@media(max-width:768px){.projects-grid{grid-template-columns:1fr}}

/* ── Galleries Grid ───────────────────────────────────────── */
.galleries-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.8rem;padding-bottom:4rem}
.gallery-card{border-radius:12px;overflow:hidden;background:#fff;border:1px solid #eee;transition:all .3s ease}
.gallery-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,.1)}
.gallery-image{aspect-ratio:4/3;overflow:hidden;background:#f0f0f0}
.gallery-image img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.gallery-card:hover .gallery-image img{transform:scale(1.05)}
.gallery-info{padding:1.4rem}
.gallery-info h3{font-size:1.05rem;font-weight:600;margin-bottom:.4rem}
.gallery-info p{font-size:.88rem;color:#666;margin-bottom:.8rem}
.gallery-meta{display:flex;justify-content:space-between;align-items:center;font-size:.8rem;color:#999}
.gallery-meta i{margin-right:.3rem;color:#c9a84c}

@media(max-width:768px){.galleries-grid{grid-template-columns:1fr}}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer{background:#1a1a1a;color:#ccc;padding:4rem 0 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:3rem}
.footer-col h4{color:#fff;font-size:1rem;margin-bottom:1rem}
.footer-col p{font-size:.88rem;line-height:1.7;color:rgba(255,255,255,.55);max-width:320px}

.logo-footer{display:flex;align-items:center;gap:.5rem;font-size:1.1rem;font-weight:700;color:#fff;margin-bottom:1rem}
.logo-footer i{color:#c9a84c}

.social-links{display:flex;gap:.7rem;margin-top:1.2rem}
.social-links a{width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.08);display:inline-flex;align-items:center;justify-content:center;font-size:.9rem;color:rgba(255,255,255,.6);transition:all .25s ease}
.social-links a:hover{background:#c9a84c;color:#fff}

.footer-col ul{display:flex;flex-direction:column;gap:.55rem}
.footer-col ul a{font-size:.88rem;color:rgba(255,255,255,.55);transition:color .2s ease}
.footer-col ul a:hover{color:#c9a84c}

.contact-list li{display:flex;align-items:center;gap:.6rem;font-size:.88rem;color:rgba(255,255,255,.55)}
.contact-list i{color:#c9a84c;width:16px;text-align:center}

.footer-bottom{border-top:1px solid rgba(255,255,255,.08);margin-top:3rem;padding:1.5rem 0;text-align:center;font-size:.82rem;color:rgba(255,255,255,.35)}

@media(max-width:768px){.footer-grid{grid-template-columns:1fr;text-align:center}.logo-footer{justify-content:center}.social-links{justify-content:center}.contact-list li{justify-content:center}}

/* ── Forms (generic for contact / book pages) ─────────────── */
.form-group{margin-bottom:1.2rem}
.form-group label{display:block;font-size:.85rem;font-weight:600;color:#444;margin-bottom:.35rem}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:.7rem 1rem;border:1.5px solid #ddd;border-radius:8px;font-size:.9rem;font-family:inherit;transition:border-color .2s ease}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:#c9a84c}
.form-group textarea{resize:vertical;min-height:10px}

/* ── Gallery / Lightbox Helpers ────────────────────────────── */
.photo-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1rem}
.photo-grid img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:8px;cursor:pointer;transition:transform .3s ease}
.photo-grid img:hover{transform:scale(1.03)}

/* ── Booking Form ─────────────────────────────────────────── */
@media(max-width:600px){.book-form-grid{grid-template-columns:1fr !important}}

/* ── Misc ─────────────────────────────────────────────────── */
.text-center{text-align:center}
.mt-1{margin-top:1rem}
.mb-1{margin-bottom:1rem}
