:root {
    --primary-bg: #fdf6ec;
    --accent-gold: #ffb266;
    --accent-sunset: #e67e22;
    --warm-brown: #4a342e;
    --text-deep: #2e1e1e;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.7;
    /* Slightly improved for Inter */
    color: var(--text-deep);
    background-color: var(--primary-bg);
    overflow-x: hidden;
    /* Prevent horizontal jumping on mobile */
}

/* Navigation Bar Styles */
.navbar {
    background-color: transparent;
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    width: 100%;
    display: flex;
    align-items: center;
}

.navbar-brand {
    width: 50%;
    display: flex;
    justify-content: center;
    padding-left: 2rem;
    /* Keep logo slightly away from center */
}

.navbar-brand h1 {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.navbar.scrolled .navbar-brand h1 {
    color: var(--warm-brown);
    text-shadow: none;
}

.navbar-menu {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 0.8rem;
    /* Reduced gap for better fit */
    padding-right: 2rem;
    /* Keep items safe from screen edge */
}

.navbar-menu a {
    color: #fff;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    /* Professional standard size */
    transition: var(--transition-smooth);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    letter-spacing: -0.01em;
    /* Modern Inter styling */
}

.navbar.scrolled .navbar-menu a {
    color: var(--warm-brown);
    text-shadow: none;
}

.navbar-menu a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(5px);
}

.navbar.scrolled .navbar-menu a:hover {
    background-color: var(--accent-gold);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 178, 102, 0.3);
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1100;
    margin-right: 1.5rem;
}

.menu-icon span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.navbar.scrolled .menu-icon span {
    background-color: var(--warm-brown);
}

/* Hero Section */
.hero {
    display: flex;
    min-height: 100vh;
    width: 100%;
    padding: 0;
    overflow: hidden;
    background: #0f1628;
    margin-top: 0;
}

.hero-left {
    flex: 1;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 22, 40, 0.2);
    z-index: 2;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    padding-top: 90px;
    /* Navbar yüksekliği için boşluk */
    background: #fdf6ec;
    /* Cream base */
    background: radial-gradient(at 0% 0%, rgba(255, 238, 173, 0.5) 0, transparent 50%),
        radial-gradient(at 50% 0%, rgba(255, 178, 102, 0.3) 0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(255, 138, 101, 0.4) 0, transparent 50%),
        radial-gradient(at 0% 100%, rgba(255, 204, 128, 0.5) 0, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 153, 0, 0.2) 0, transparent 50%);
    z-index: 3;
    position: relative;
    overflow: hidden;
}

/* Subtle Animated Glow Elements */
.hero-right::before,
.hero-right::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: floatGlow 15s infinite alternate ease-in-out;
}

.hero-right::before {
    background: #ffe0b2;
    top: -10%;
    right: -10%;
}

.hero-right::after {
    background: #ffccbc;
    bottom: -10%;
    left: -10%;
    animation-delay: -5s;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 30px) scale(1.2);
    }
}

.hero-content {
    max-width: 500px;
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.45);
    /* Increased opacity for better contrast */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    /* Softer, deeper shadow */
    z-index: 4;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-content:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-content h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a0f0d;
    /* Very deep mocha brown for maximum legibility */
    text-shadow: none;
    line-height: 1.1;
}

.hero-content p {
    font-family: "Inter", sans-serif;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #3e2723;
    /* Darker brown for the paragraph to improve contrast */
    font-weight: 500;
    /* Increased weight slightly for clarity */
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* Hero Responsive Overlay Adjustments */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        height: 100vh;
        height: 100svh;
        min-height: -webkit-fill-available;
        position: relative;
        overflow: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .hero-left {
        height: 100vh;
        height: 100svh;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        overflow: hidden;
    }

    .hero-right {
        height: 100vh;
        height: 100svh;
        width: 100%;
        background: transparent;
        display: flex;
        align-items: flex-end;
        /* Position content at the bottom */
        justify-content: center;
        padding: 90px 1rem 40px;
        /* Navbar gap (top) and safe padding (bottom) */
        position: relative;
        z-index: 2;
        overflow: hidden;
    }

    .hero-overlay {
        background-color: rgba(15, 22, 40, 0.4);
    }

    .hero-right::before,
    .hero-right::after {
        display: none !important;
        /* Remove heavy blur glow elements on mobile */
    }

    .hero-content {
        padding: 2rem 1.2rem;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: none !important;
        /* Explicitly remove blur for video clarity */
        -webkit-backdrop-filter: none !important;
        border: 1px solid rgba(255, 255, 255, 0.25);
        width: 90% !important;
        max-width: 450px;
        margin: 0 auto !important;
        position: static;
        z-index: 10;
        border-radius: 24px 24px 0 0;
        /* Docked effect at the bottom */
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
        transform: none !important;
        /* Keep stability fix */
        transition: none !important;
        /* Keep stability fix */
    }

    .hero-content h2 {
        font-size: 1.7rem;
        color: #fff;
        margin-bottom: 1rem;
        line-height: 1.2;
        font-weight: 700;
        text-align: center;
    }

    .hero-content p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 1.5rem;
        line-height: 1.5;
        text-align: center;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
}

.cta-button {
    background: linear-gradient(135deg, #4a342e 0%, #2e1e1e 100%);
    color: #fff;
    padding: 16px 45px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(74, 52, 46, 0.2);
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(74, 52, 46, 0.3);
    background: linear-gradient(135deg, #5d4037 0%, #3e2723 100%);
}

/* Features Section */
.features {
    padding: 7rem 2rem 6rem;
    background-color: var(--primary-bg);
    text-align: center;
}

.features h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: var(--warm-brown);
    margin-bottom: 0rem;
}

/* Bento Amenities Styles - Ultra Compact refinement */
.bento-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(85px, auto);
    /* Aggressively reduced from 110px */
    gap: 0.8rem;
    /* Tighter gaps */
    max-width: 1050px;
    margin: 1.5rem auto 0;
    /* Reduced top margin */
    padding: 0 1rem;
}

.bento-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    /* Sharper, cleaner look */
    border: 1px solid rgba(255, 178, 102, 0.3);
    padding: 1rem;
    /* Minimum padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(74, 52, 46, 0.03);
}

.bento-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--accent-gold);
}

.bento-card i {
    font-size: 1.6rem;
    /* Scaled down further */
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.bento-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    /* Compact header */
    font-weight: 700;
    color: var(--warm-brown);
    margin-bottom: 0.3rem;
}

.bento-card p {
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
    /* Tiny but crisp Inter font */
    color: #3e2723;
    line-height: 1.3;
    margin: 0;
}

/* Bento Spans */
.bento-card.large {
    grid-column: span 2;
    grid-row: span 2;
    background: rgba(255, 255, 255, 0.55);
}

.bento-card.medium {
    grid-column: span 2;
}

.bento-card.wide {
    grid-column: span 4;
}

.bento-card.small {
    padding: 1.5rem;
}

.bento-card.small i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.bento-card.small p {
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Specific Adjustments */
.bento-card.main-pool i {
    font-size: 2.8rem;
}

.bento-card.location {
    flex-direction: row;
    gap: 1.2rem;
    text-align: left;
    padding: 1rem 2rem;
}

.bento-card.location i {
    font-size: 1.8rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .bento-container {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 1rem;
    }

    .bento-card {
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transform: none !important;
        transition: none !important;
    }

    .bento-card.large,
    .bento-card.medium,
    .bento-card.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-card {
        padding: 1.5rem;
    }

    .bento-card.location {
        flex-direction: column;
        text-align: center;
    }
}



/* Gallery Section */
.gallery {
    background-color: var(--primary-bg);
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.gallery h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: var(--warm-brown);
    margin-bottom: 2rem;
    flex-shrink: 0;
}

/* Center Stage Gallery - Natural Aspect Focus */
.center-stage-wrapper {
    position: relative;
    width: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stage-viewport {
    width: 100%;
    overflow: visible;
    /* Allowing items to overflow for calculation */
    padding: 2rem 0;
}

.stage-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    width: max-content;
}

.stage-item {
    flex: 0 0 auto;
    width: auto;
    height: 65vh;
    max-width: 85vw;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    /* Hidden by default */
    pointer-events: none;
    filter: blur(8px) brightness(0.5);
    transform: scale(0.9);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.stage-item.focus {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: scale(1);
    z-index: 10;
    pointer-events: auto;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 25px 70px rgba(74, 52, 46, 0.2);
}

.stage-item.prev-item,
.stage-item.next-item {
    opacity: 0.35;
    filter: blur(4px) brightness(0.7);
    transform: scale(0.9);
    pointer-events: auto;
}

.stage-item img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    /* Respect original proportions */
}

/* Pill Arrows */
.stage-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--warm-brown);
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stage-arrow:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.stage-arrow.prev {
    left: 30px;
}

.stage-arrow.next {
    right: 30px;
}

@media (max-width: 1024px) {
    .gallery {
        padding: 5rem 0.5rem 2.5rem;
        height: auto;
        min-height: 75vh;
    }

    .gallery h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    /* Mobilde blur kaldırıldı – tüm fotoğraflar net görünsün */
    .stage-item {
        height: 45vh;
        max-width: 90vw;
        filter: blur(0) brightness(0.85);
    }

    .stage-item.focus {
        filter: blur(0) brightness(1);
    }

    .stage-item.prev-item,
    .stage-item.next-item {
        filter: blur(0) brightness(0.75);
    }

    .stage-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid var(--accent-gold);
    }

    .stage-arrow.prev {
        left: 5px;
    }

    .stage-arrow.next {
        right: 5px;
    }

    .stage-viewport {
        padding: 1rem 0;
    }
}



/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    background-color: #f1f1f1;
    padding: 1rem;
    border-radius: 10px;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-image {
    width: 100%;
    max-width: 800px;
    max-height: 600px;
    object-fit: contain;
    border-radius: 8px;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.close:hover {
    color: #000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Reservation Section */
.reservation {
    background-color: #f9f9f9;
    padding: 7.5rem 2rem 6rem;
    text-align: center;
}

.reservation h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #2a1a4d;
    margin-bottom: 0.8rem;
}

.reservation {
    background-color: var(--primary-bg);
    padding: 6rem 2rem 2.5rem;
    text-align: center;
}

.reservation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    background-color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 50px rgba(74, 52, 46, 0.1);
    align-items: center;
}

.reservation-info {
    text-align: left;
}

.reservation-info h3 {
    color: var(--warm-brown);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.reservation-info p {
    color: #555;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.calendar-wrapper {
    margin: 0.5rem 0;
    background-color: #FAF7F2;
    border-radius: 15px;
    padding: 1rem;
    border: 1px solid var(--accent-gold);
    box-shadow: inset 0 2px 10px rgba(74, 52, 46, 0.03);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.calendar-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: var(--warm-brown);
    font-size: 1.1rem;
}

.calendar-title i {
    margin-right: 0.5rem;
    color: var(--accent-gold);
}

.calendar-legend {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    font-family: "Inter", sans-serif;
    color: var(--text-muted);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-item .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.available .dot {
    background-color: #fff;
    border: 1px solid var(--accent-gold);
}

.booked .dot {
    background-color: var(--accent-gold);
}

.calendar-container {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(74, 52, 46, 0.1);
}

#googleCalendar {
    filter: sepia(0.2) contrast(0.9) brightness(1.05);
}


.reservation-features {
    list-style: none;
    padding: 0;
}

.reservation-features li {
    margin-bottom: 0.8rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
}

.reservation-features i {
    color: var(--accent-sunset);
}

.reservation-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding-top: 5rem;
    /* Match header height for alignment */
}

.reservation-cta .reservation-features {
    margin-bottom: 2rem;
}

.book-now-button {
    background-color: #25d366;
    color: white;
    padding: 14px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.book-now-button:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.direct-call {
    color: #666;
    font-size: 0.95rem;
}

.direct-call strong {
    color: var(--warm-brown);
}

@media (max-width: 768px) {
    .reservation-container {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .reservation-info {
        text-align: center;
    }

    .reservation-features li {
        justify-content: center;
    }

    .reservation-cta {
        padding-top: 0;
        align-items: center;
        text-align: center;
    }

    .reservation-cta .reservation-features {
        margin-bottom: 1rem;
    }
}

/* Form Status & Feedback */
.form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    display: none;
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease;
}

.form-status.success {
    display: block;
    background-color: rgba(37, 211, 102, 0.1);
    color: #128c7e;
    border: 1px solid #25d366;
}

.form-status.error {
    display: block;
    background-color: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    border: 1px solid #e74c3c;
}

.form-status i {
    margin-right: 8px;
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Contact Section */
.contact {
    background-color: var(--primary-bg);
    padding: 7.5rem 2rem 6rem;
}

.contact h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: var(--warm-brown);
    text-align: center;
    margin-bottom: 0.5rem;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background-color: #fff;
    /* Keep the container white for contrast against the cream section background */
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 40px rgba(74, 52, 46, 0.08);
}

.contact-info h3 {
    color: var(--warm-brown);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-info p {
    font-family: "Inter", sans-serif;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(255, 178, 102, 0.1);
    background: #fff;
}

.submit-button {
    background: linear-gradient(135deg, #4a342e 0%, #2e1e1e 100%);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(74, 52, 46, 0.1);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(74, 52, 46, 0.2);
}

/* Footer */
.footer {
    background-color: #1e1512;
    /* Deep chocolate brown */
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 4rem 2rem;
    border-top: 2px solid var(--accent-sunset);
}

.footer p {
    margin: 0.5rem 0;
    font-family: "Inter", sans-serif;
}

.owner-name {
    font-family: "Inter", sans-serif;
    margin-top: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {

    /* Navbar optimizations */
    .navbar {
        padding: 1rem 0;
    }

    .navbar.scrolled {
        padding: 0.75rem 0;
    }

    .navbar-container {
        justify-content: space-between;
        padding: 0 1rem;
        flex-direction: row;
        align-items: center;
        max-width: 100%;
    }

    /* Hero section already optimized above */

    .features {
        padding: 4rem 1rem 3rem;
    }

    .features h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .gallery h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 2rem;
    }

    .contact {
        padding: 4rem 1rem 3rem;
    }

    .reservation {
        padding: 4rem 1rem 3rem;
    }

    .reservation-container {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .book-now-button {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .submit-button {
        padding: 16px;
        font-size: 1rem;
        min-height: 48px;
    }

    .bento-container {
        gap: 0.75rem;
        padding: 0 0.5rem;
    }

    .bento-card {
        padding: 1.25rem;
    }

    .bento-card h3 {
        font-size: 0.95rem;
    }

    .bento-card p {
        font-size: 0.8rem;
    }

    /* Navbar Mobile Refinement */
    .navbar-container {
        justify-content: space-between;
        padding: 0.5rem 1rem;
        flex-direction: row;
        align-items: center;
    }

    .navbar-brand {
        width: auto;
        padding-left: 0;
        justify-content: flex-start;
    }

    .navbar-brand h1 {
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }

    .menu-icon {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--primary-bg);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: 2rem;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .navbar-menu a {
        color: var(--warm-brown);
        font-size: 1.1rem;
        text-shadow: none;
        padding: 0.8rem 1.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-toggle:checked~.navbar-menu {
        right: 0;
    }

    .menu-toggle:checked~.menu-icon span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle:checked~.menu-icon span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked~.menu-icon span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Improved spacing and readability */
    .reservation-info h3 {
        font-size: 1.5rem;
    }

    .reservation-info p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-info p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .calendar-wrapper {
        margin-top: 1rem;
    }

    #googleCalendar {
        height: 280px;
    }

    .map-container {
        margin-top: 2rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .footer {
        padding: 3rem 1rem;
    }

    .footer p {
        font-size: 0.9rem;
    }

    /* Smooth scrolling improvements */
    html {
        scroll-padding-top: 80px;
    }
}

/* Utility class to kill all transitions during infinite loop reset */
.no-transition,
.no-transition * {
    transition: none !important;
}