/* --- THEME SETUP --- */
:root {
    --bg: #ffffff;
    --text: #1a1a1a;
    --nav: rgba(255, 255, 255, 0.95);
    --shade: #f9f9f9;
    --accent: #D4AF37;
    /* Consistent Gold */
}

body.dark-mode {
    --bg: #111111;
    --text: #eeeeee;
    --nav: rgba(17, 17, 17, 0.95);
    --shade: #1a1a1a;
}

/* --- CORE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: background 0.3s, color 0.3s;
}

/* --- SERVICES PAGE SPECIFIC --- */
/* This section handles the look of your services.html file */
.services-section {
    padding: 150px 10% 80px;
    text-align: center;
    min-height: 100vh;
}

.services-header {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    padding: 40px;
    border: 1px solid var(--accent);
    border-radius: 15px;
    transition: transform 0.3s;
    background: var(--shade);
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--accent);
    color: white;
}

/* --- NAV & LOGO --- */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    background: var(--nav);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: background 0.3s;
}

.nav-logo {
    height: 100px;
    width: auto;
    transition: 0.3s;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.menu-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.menu-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.contact-pill {
    background: var(--accent);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

/* --- HERO --- */
.hero-fullscreen {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.side-promo {
    position: absolute;
    left: 4%;
    bottom: 10%;
    z-index: 10;
}

.glass-promo {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 220px;
}

.promo-label {
    color: var(--accent);
    font-weight: 800;
    font-size: 10px;
    margin-bottom: 5px;
}

.promo-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.wa-link {
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 11px;
    display: inline-block;
}

.hero-center-content {
    text-align: center;
    color: white;
    z-index: 5;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.main-subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1rem;
    opacity: 0.9;
}

/* --- GRID --- */
.feed-block {
    padding: 80px 10%;
    text-align: center;
}

.alt-shade {
    background: var(--shade);
    transition: background 0.3s;
}

.category-tag {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.feed-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin: 10px 0 40px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.grid-item {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1/1;
    background: #eee;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

/* --- LIGHTBOX --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    cursor: pointer;
}

/* --- MODALS & FOOTER --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg);
    color: var(--text);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    text-align: center;
    transition: background 0.3s, color 0.3s;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    border: none;
    background: none;
    cursor: pointer;
    color: #999;
}

.main-footer {
    background: #111;
    color: #666;
    padding: 60px 10%;
    text-align: center;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* --- RESPONSIVE HAMBURGER MENU --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .menu-links {
        position: fixed;
        top: 130px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--nav);
        backdrop-filter: blur(15px);
        gap: 0;
        padding: 0;
        height: calc(100vh - 130px);
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: visibility 0.3s ease, opacity 0.3s ease;
    }

    .menu-links.active {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .menu-links a {
        padding: 1rem 5%;
        border-bottom: 1px solid var(--shade);
        width: 100%;
        text-align: left;
        font-size: 14px;
    }

    .menu-links a:last-of-type {
        border-bottom: none;
    }

    .contact-pill {
        padding: 1rem 5%;
        margin: 0 5%;
        width: calc(100% - 10%);
        text-align: center;
        border: none;
    }

    .nav-logo {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .menu-links {
        top: 100px;
    }

    .nav-logo {
        height: 60px;
    }

    .menu-links a {
        font-size: 13px;
    }
}