/* ====================================
   ENTRANCE OVERLAY
   ==================================== */
.entrance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 26, 0.9) 100%);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 1.5s ease-out;
}

.entrance-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.entrance-content {
    text-align: center;
    animation: entranceSlideUp 1s ease-out;
}

.entrance-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    color: var(--color-accent);
    text-shadow: 0 0 40px rgba(196, 164, 132, 0.3);
    text-transform: uppercase;
    line-height: 1.2;
}

.entrance-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.8rem, 1.5vw, 1.3rem);
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 3rem;
    color: var(--color-text);
    opacity: 0.8;
    text-transform: uppercase;
    line-height: 1.4;
}

.entrance-button {
    padding: 1.2rem 3.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.entrance-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--color-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.entrance-button:hover::before {
    width: 300px;
    height: 300px;
}

.entrance-button:hover {
    color: var(--color-bg);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 164, 132, 0.4);
}

@keyframes entranceSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   RESET & BASE STYLES
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #1A1A1A;
    --color-bg-alt: #000000;
    --color-text: #FFFFFF;
    --color-accent: #C4A484;
    --color-accent-dark: #A68968;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ====================================
   HEADER & NAVIGATION
   ==================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(196, 164, 132, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-accent);
    text-transform: uppercase;
}

.logo-tagline {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--color-text);
    opacity: 0.7;
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    background-image: url('/images/c2fa813c-8b0d-483e-ba44-217f5ba51636.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 0 150px;
    overflow: hidden;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(26,26,26,0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    width: 100%;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 5rem);
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    color: var(--color-text);
    text-shadow: 2px 2px 20px rgba(0,0,0,0.8);
    line-height: 1.2;
    word-wrap: break-word;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    color: var(--color-accent);
    opacity: 0.9;
    line-height: 1.4;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg);
    border: 2px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 164, 132, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-accent);
    font-size: 0.75rem;
    letter-spacing: 2px;
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* ====================================
   SECTION COMMON STYLES
   ==================================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--color-accent);
    opacity: 0.8;
}

/* ====================================
   INSTAGRAM FEED SECTION
   ==================================== */
.instagram-feed {
    background-color: var(--color-bg);
    padding: 5rem 0;
    width: 100%;
    overflow-x: hidden;
}

.instagram-feed .container {
    max-width: 100%;
    overflow-x: hidden;
}

.instagram-post {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background-color: #111;
    border-radius: 4px;
    cursor: pointer;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-post-overlay {
    opacity: 1;
}

.instagram-post-info {
    display: flex;
    gap: 1.5rem;
    color: var(--color-text);
    font-size: 0.9rem;
}

.instagram-post-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instagram-loading {
    text-align: center;
    padding: 3rem;
    color: var(--color-accent);
    font-size: 1.1rem;
}

.instagram-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Custom Instagram Grid */
.instagram-grid-custom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Show all images on desktop (3 columns) */
.instagram-post-custom {
    display: block;
}

/* Individual Instagram Post */
.instagram-post-custom {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background-color: #111;
    border-radius: 4px;
    width: 100%;
    max-width: 100%;
}

/* Posts 4+ display at full/natural aspect ratio (not cropped to square) */
.instagram-post-custom:nth-child(n+4) {
    aspect-ratio: auto;
}

.instagram-post-custom:nth-child(n+4) img,
.instagram-post-custom:nth-child(n+4) video {
    object-fit: contain;
    height: auto;
}

.instagram-post-custom a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.instagram-post-custom a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(26,26,26,0.25));
    z-index: 1;
    pointer-events: none;
}

.instagram-post-custom img,
.instagram-post-custom video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.instagram-post-custom video {
    cursor: pointer;
}

/* Hide default video controls for cleaner look */
.instagram-post-custom video::-webkit-media-controls {
    display: none !important;
}

.instagram-post-custom video::-webkit-media-controls-enclosure {
    display: none !important;
}

/* Instagram Overlay */
.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.instagram-post-custom:hover .instagram-overlay {
    opacity: 1;
}

/* Disable hover overlay for first 3 images (but not videos) */
.instagram-post-custom:nth-child(1):not(:has(video)):hover .instagram-overlay,
.instagram-post-custom:nth-child(2):not(:has(video)):hover .instagram-overlay,
.instagram-post-custom:nth-child(3):not(:has(video)):hover .instagram-overlay {
    opacity: 0;
}

/* Videos always show overlay initially (for play button) */
.instagram-post-custom:has(video) .instagram-overlay {
    opacity: 1;
    align-items: flex-end;
    justify-content: flex-start;
    background: transparent;
}

.instagram-info {
    color: var(--color-text);
    width: 100%;
    text-shadow: 0 0 10px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.7), 0 2px 4px rgba(0,0,0,1);
}

.instagram-info p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.video-icon {
    display: block;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8))
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6))
            drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 8px rgba(0, 0, 0, 0.7),
        0 6px 12px rgba(0, 0, 0, 0.5);
    animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Video overlay content aligned to bottom-left */
.instagram-post-custom:has(video) .instagram-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Tablet responsive - 2 columns, hide first 3 images */
@media (max-width: 900px) {
    .instagram-grid-custom {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Hide first 3 images when grid is 2 columns */
    .instagram-grid-custom > .instagram-post-custom:nth-child(1),
    .instagram-grid-custom > .instagram-post-custom:nth-child(2),
    .instagram-grid-custom > .instagram-post-custom:nth-child(3) {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
}

/* Mobile responsive - single column, hide first 3 images */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100vw;
    }

    .instagram-feed {
        padding: 3rem 0;
        width: 100%;
        max-width: 100vw;
    }

    .instagram-feed .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100vw;
    }

    .instagram-grid-custom {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        max-width: 100%;
    }

    .instagram-post-custom {
        width: 100%;
        max-width: 100%;
    }

    /* Keep first 3 hidden on mobile too */
    .instagram-grid-custom > .instagram-post-custom:nth-child(1),
    .instagram-grid-custom > .instagram-post-custom:nth-child(2),
    .instagram-grid-custom > .instagram-post-custom:nth-child(3) {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .instagram-overlay {
        padding: 1rem;
    }

    .instagram-info p {
        font-size: 0.8rem;
    }
}

/* Very small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .instagram-feed .container {
        padding: 0 10px;
    }

    .instagram-grid-custom {
        gap: 10px;
        width: 100%;
        max-width: 100%;
    }

    .instagram-post-custom {
        width: 100%;
        max-width: 100%;
    }

    /* Keep first 3 hidden on very small mobile too */
    .instagram-grid-custom > .instagram-post-custom:nth-child(1),
    .instagram-grid-custom > .instagram-post-custom:nth-child(2),
    .instagram-grid-custom > .instagram-post-custom:nth-child(3) {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .instagram-overlay {
        padding: 0.75rem;
    }

    .instagram-info p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .video-icon {
        font-size: 1.2rem;
    }

    .instagram-post-custom:hover {
        transform: none; /* Disable lift effect on small mobile */
    }
}

/* ====================================
   BOOKING SECTION
   ==================================== */
.booking {
    background-color: var(--color-bg);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-left: 2px solid var(--color-accent);
    background: rgba(196, 164, 132, 0.03);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.3;
    line-height: 1;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    color: var(--color-accent);
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text);
    opacity: 0.8;
}

.booking-form-wrapper {
    background: rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    border: 1px solid rgba(196, 164, 132, 0.2);
}

.booking-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--color-accent);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    border: 1px solid rgba(196, 164, 132, 0.3);
    transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.08);
}

.booking-form select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23C4A484" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 40px;
}

.booking-form select option {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 10px;
    font-size: 0.95rem;
}

.booking-form select option:hover,
.booking-form select option:focus,
.booking-form select option:checked {
    background-color: #C4A484;
    color: #1A1A1A;
}

.booking-form textarea {
    resize: vertical;
    min-height: 120px;
}

.booking-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    margin-top: 5rem;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-accent);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background: rgba(196, 164, 132, 0.05);
    border-left: 3px solid var(--color-accent);
}

.faq-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    color: var(--color-accent);
}

.faq-item p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text);
    opacity: 0.85;
}

/* ====================================
   ABOUT SECTION
   ==================================== */
.about {
    background-color: var(--color-bg-alt);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    filter: grayscale(30%);
    transition: var(--transition);
}

.about-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.about-specialty {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.specialty-badge {
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    background-color: var(--color-accent);
    color: var(--color-bg);
}

.about-text p {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    opacity: 0.9;
}

.quote {
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--color-accent);
    background: rgba(196, 164, 132, 0.05);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-accent);
}

.credentials {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.credential-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credential-item strong {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.credential-item span {
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--color-text);
    opacity: 0.7;
}

/* ====================================
   CONTACT SECTION
   ==================================== */
.contact {
    background-color: var(--color-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.contact-block p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text);
    opacity: 0.85;
}

.contact-block a {
    color: var(--color-accent);
    transition: var(--transition);
}

.contact-block a:hover {
    color: var(--color-accent-dark);
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--color-accent);
}

.social-link svg {
    flex-shrink: 0;
}

/* Google Maps Iframe */
.map-container {
    width: 100%;
    height: 500px;
    border-radius: 4px;
    border: 1px solid rgba(196, 164, 132, 0.2);
    filter: grayscale(40%) brightness(0.7) contrast(0.9);
    transition: var(--transition);
    opacity: 0.85;
}

.map-container:hover {
    filter: grayscale(20%) brightness(0.65) contrast(0.85);
    opacity: 1;
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background-color: var(--color-bg-alt);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(196, 164, 132, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--color-text);
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--color-text);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent);
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--color-text);
    opacity: 0.7;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--color-accent);
    opacity: 1;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 164, 132, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-text);
    opacity: 0.6;
}

.footer-bottom a {
    color: var(--color-accent);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-bottom a:hover {
    opacity: 1;
}

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

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--color-accent);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(196, 164, 132, 0.1);
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--color-accent);
    color: var(--color-bg);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1024px) {
    .booking-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    /* Mobile Hero Fixes */
    .hero {
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
        min-height: 100vh;
        padding: 80px 0 100px;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(0, 0, 0, 0.98);
        transition: var(--transition);
        padding: 2rem;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .credentials {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Centralize contact blocks on mobile */
    .contact-block {
        text-align: center;
    }

    .social-links {
        align-items: center;
    }

    .map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .portfolio-filters {
        gap: 0.75rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .booking-form-wrapper {
        padding: 1.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 0.5rem;
    }
}
