*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --bg:#f7f3ee;
    --white:#ffffff;
    --dark:#101826;
    --text:#5f6773;
    --gold:#c6a56b;
    --gold-dark:#a9884f;
    --blue:#0f80c5;
    --line:rgba(255,255,255,0.18);
    --overlay:rgba(8,12,20,0.54);
    --shadow:0 20px 60px rgba(16,24,38,0.14);
    --radius:28px;
    --container:1280px;
}

html{
    scroll-behavior:smooth;
}

html,
body{
    max-width:100%;
    overflow-x:hidden;
}

body{
    font-family:'Inter', sans-serif;
    background:var(--bg);
    color:var(--dark);
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

h1,h2,h3,h4{
    font-family:'Cormorant Garamond', serif;
    font-weight:700;
    line-height:1.1;
}

#progress-bar{
    position:fixed;
    top:0;
    left:0;
    width:0%;
    height:4px;
    background:linear-gradient(90deg,var(--gold),#ecd7b0);
    z-index:3000;
}

/* Hero */
.bookings-header{
    min-height:78vh;
    position:relative;
    background:
        linear-gradient(var(--overlay), var(--overlay)),
        url("Images/vacation-knoetzie.png") center center / cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 50% 35%, rgba(255,255,255,0.08), transparent 35%),
        linear-gradient(to bottom, rgba(0,0,0,0.12), rgba(0,0,0,0.28));
}

nav{
    position:fixed;
    top:18px;
    left:50%;
    transform:translateX(-50%);
    width:92%;
    max-width:var(--container);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 28px;
    border-radius:18px;
    background:rgba(16,24,38,0.22);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border:1px solid var(--line);
    z-index:2000;
    transition:all .35s ease;
}

nav.scrolled{
    top:10px;
    background:rgba(16,24,38,0.84);
    box-shadow:var(--shadow);
}

.logo img{
    width:100px;
    height:auto;
}


.nav-links ul li{
    display:inline-block;
    margin:0 14px;
}

.nav-links ul li a{
    color:#fff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1.8px;
    font-weight:500;
    position:relative;
    padding-bottom:6px;
}

.nav-links ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:var(--gold);
    transition:width .35s ease;
}

.nav-links ul li a:hover::after,
.nav-links ul li a.active::after{
    width:100%;
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:16px;
}

.nav-book-btn{
    padding:11px 20px;
    border-radius:999px;
    background:var(--gold);
    color:#fff;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    transition:.3s ease;
    box-shadow:0 14px 30px rgba(198,165,107,0.25);
}

.nav-book-btn:hover{
    background:var(--gold-dark);
    transform:translateY(-2px);
}

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.45);
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    z-index:1900;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

.menu-toggle,
.menu-close{
    display:none;
    background:none;
    border:none;
    color:#fff;
    cursor:pointer;
}

.menu-toggle{
    font-size:24px;
    padding:6px;
}

.menu-close{
    position:absolute;
    top:24px;
    right:22px;
    font-size:28px;
    z-index:2400;
}


.hero-content{
    position:relative;
    z-index:5;
    width:90%;
    max-width:900px;
    text-align:center;
    color:#fff;
    padding-top:80px;
}

.hero-subtitle{
    display:inline-block;
    margin-bottom:16px;
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:13px;
    font-weight:600;
}

.hero-content h1{
    font-size:82px;
    color:#fff;
    margin-bottom:18px;
    text-shadow:0 12px 40px rgba(0,0,0,0.28);
}

.hero-content p{
    max-width:760px;
    margin:0 auto 34px;
    font-size:18px;
    color:rgba(255,255,255,0.9);
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 30px;
    border-radius:999px;
    background:var(--gold);
    color:#fff;
    border:1px solid var(--gold);
    font-size:14px;
    font-weight:600;
    transition:.35s ease;
    box-shadow:0 18px 35px rgba(0,0,0,0.15);
}

.hero-btn:hover{
    background:var(--gold-dark);
    border-color:var(--gold-dark);
    transform:translateY(-3px);
}

.hero-btn-secondary{
    background:transparent;
    border:1px solid rgba(255,255,255,0.45);
}

.hero-btn-secondary:hover{
    background:rgba(255,255,255,0.10);
    border-color:#fff;
}

/* Shared */
.intro-section,
.stay-section,
.booking-section{
    width:92%;
    max-width:var(--container);
    margin:0 auto;
}

.intro-section{
    padding:95px 0 35px;
}

.stay-section{
    padding:30px 0 40px;
}

.booking-section{
    padding:40px 0 110px;
}

.section-heading{
    max-width:860px;
    margin:0 auto 40px;
    text-align:center;
}

.section-heading span{
    display:inline-block;
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:13px;
    font-weight:600;
    margin-bottom:12px;
}

.section-heading h2{
    font-size:56px;
    margin-bottom:16px;
}

.section-heading p{
    color:var(--text);
    font-size:17px;
}

.left-align{
    text-align:left;
    margin:0 0 28px;
}

/* Intro */
.intro-card{
    background:rgba(255,255,255,0.82);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-radius:28px;
    padding:38px;
    box-shadow:var(--shadow);
    text-align:center;
}

.intro-card h2{
    font-size:46px;
    margin-bottom:14px;
}

.intro-card p{
    font-size:16px;
    color:var(--text);
    max-width:920px;
    margin:0 auto;
}

/* Stay cards */
.stay-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.stay-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:transform .3s ease, box-shadow .3s ease;
}

.stay-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 70px rgba(16,24,38,0.16);
}

.stay-image{
    height:270px;
    overflow:hidden;
}

.stay-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .45s ease;
}

.stay-card:hover .stay-image img{
    transform:scale(1.05);
}

.stay-content{
    padding:26px 24px 28px;
}

.stay-content h3{
    font-size:34px;
    margin-bottom:12px;
}

.stay-content p{
    color:var(--text);
    font-size:15px;
}

/* Booking */
.booking-grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:28px;
    align-items:start;
}

.booking-form-wrap,
.booking-info{
    background:#fff;
    border-radius:32px;
    box-shadow:var(--shadow);
    padding:36px;
}

.premium-form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.premium-form label{
    font-weight:600;
    color:var(--dark);
    margin-top:6px;
}

.premium-form input,
.premium-form select{
    width:100%;
    padding:16px 18px;
    border:1px solid rgba(16,24,38,0.12);
    border-radius:16px;
    font-size:15px;
    font-family:'Inter', sans-serif;
    background:#fff;
    color:var(--dark);
    outline:none;
    transition:border-color .25s ease, box-shadow .25s ease;
}

.premium-form input:focus,
.premium-form select:focus{
    border-color:#2867ff;
    box-shadow:0 0 0 4px rgba(40,103,255,0.08);
}

.submit-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:14px;
    padding:16px 28px;
    border-radius:999px;
    background:linear-gradient(135deg, var(--gold), var(--gold-dark));
    color:#fff;
    border:none;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:.35s ease;
    box-shadow:0 18px 35px rgba(0,0,0,0.15);
}

.submit-btn:hover{
    transform:translateY(-3px);
    filter:brightness(1.03);
}

.hidden-field{
    position:absolute !important;
    left:-9999px !important;
    opacity:0;
    pointer-events:none;
}

/* Info panels */
.booking-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.info-panel{
    background:#fafafa;
    border:1px solid rgba(16,24,38,0.06);
    border-radius:22px;
    padding:24px;
}

.info-panel h3{
    font-size:32px;
    margin-bottom:16px;
}

.info-row{
    display:flex;
    justify-content:space-between;
    gap:18px;
    padding:12px 0;
    border-bottom:1px solid rgba(16,24,38,0.08);
    font-size:15px;
    color:var(--text);
}

.info-row:last-child{
    border-bottom:none;
    padding-bottom:0;
}

.info-row.single{
    display:block;
}

.accent-panel{
    background:linear-gradient(135deg, #0f80c5, #2867ff);
    color:#fff;
    border:none;
}

.accent-panel h3,
.accent-panel p{
    color:#fff;
}

/* Footer */
.footer{
    background:#0f1724;
    padding:90px 20px 45px;
}

.footer-inner{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.footer-inner h2{
    color:#fff;
    font-size:48px;
    margin-bottom:12px;
}

.footer-inner p{
    color:rgba(255,255,255,0.72);
    margin-bottom:20px;
}

.icons{
    margin:26px 0 18px;
}

.icons a{
    width:52px;
    height:52px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:0 8px;
    background:rgba(255,255,255,0.08);
    color:var(--gold);
    font-size:18px;
    transition:.35s ease;
}

.icons a:hover{
    background:var(--gold);
    color:#fff;
    transform:translateY(-4px);
}

.footer-text{
    font-size:14px;
    color:rgba(255,255,255,0.55);
}

/* Reveal */
.reveal{
    opacity:0;
    transform:translateY(45px);
    transition:all .85s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* Back to top */
#backToTop{
    position:fixed;
    right:24px;
    bottom:24px;
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:var(--gold);
    color:#fff;
    font-size:22px;
    box-shadow:var(--shadow);
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.35s ease;
    z-index:2200;
}

#backToTop.show{
    opacity:1;
    visibility:visible;
}

#backToTop:hover{
    background:var(--gold-dark);
    transform:translateY(-3px);
}

/* Responsive */
@media (max-width: 1100px){
    .stay-grid{
        grid-template-columns:1fr;
    }

    .booking-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:62px;
    }

    .section-heading h2,
    .intro-card h2{
        font-size:42px;
    }
}
@media (max-width: 768px){
    nav{
        width:94%;
        padding:14px 16px;
        border-radius:18px;
    }

    .logo img{
        width:78px;
        height:auto;
    }

    .nav-book-btn{
        display:none;
    }

    .menu-toggle,
    .menu-close{
        display:block;
    }

    .nav-actions{
        display:flex;
        align-items:center;
        gap:12px;
    }

    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:78%;
        max-width:320px;
        height:100vh;
        background:rgba(15,23,42,0.98);
        box-shadow:-10px 0 30px rgba(0,0,0,0.3);
        transition:right .35s ease;
        z-index:2300;
        padding:90px 28px 30px;
        display:flex;
        flex-direction:column;
        justify-content:flex-start;
    }

    .nav-links ul{
        padding:0;
        margin:0;
        width:100%;
    }

    .nav-links ul li{
        display:block;
        margin:0 0 22px 0;
    }

    .nav-links ul li a{
        display:inline-block;
        font-size:14px;
        letter-spacing:2px;
        color:#fff;
    }

    .hero-content{
        width:92%;
        padding-top:50px;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-subtitle{
        letter-spacing:2px;
        font-size:11px;
    }

    .intro-section{
        padding:75px 0 20px;
    }

    .section-heading h2,
    .intro-card h2{
        font-size:34px;
    }

    .booking-form-wrap,
    .booking-info,
    .calendar-wrapper{
        padding:24px;
    }

    .info-row{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-inner h2{
        font-size:38px;
    }
}


@media (max-width: 480px){
    .hero-content h1{
        font-size:36px;
    }

    .section-heading h2,
    .intro-card h2{
        font-size:30px;
    }

    .booking-form-wrap,
    .booking-info,
    .calendar-wrapper,
    .calendar-card,
    .intro-card,
    .stay-content{
        padding:20px;
    }

    #bookingCalendar{
        min-height:500px;
    }

    #backToTop{
        right:16px;
        bottom:16px;
        width:46px;
        height:46px;
    }
}



.thank-you-message {
    background: linear-gradient(135deg, #f4fff6, #ecfff1);
    border: 1px solid #b7e4c7;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(46, 139, 87, 0.08);
    animation: fadeSlideIn 0.6s ease;
}

.thank-you-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e8b57, #46b96f);
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.thank-you-message h3 {
    font-size: 38px;
    margin-bottom: 12px;
    color: #1d4d2f;
}

.thank-you-message p {
    color: #355c43;
    font-size: 16px;
    margin-bottom: 6px;
}


.form-error-message {
    background: #fff4f4;
    color: #b42318;
    border: 1px solid #f3c7c7;
    border-radius: 16px;
    padding: 16px 18px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 600;
}

.calendar-section {
    width: 92%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 0 110px;
}

.calendar-wrapper {
    background: #fff;
    border-radius: 32px;
    box-shadow: var(--shadow);
    padding: 36px;
}

.calendar-card {
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    border: 1px solid rgba(16,24,38,0.08);
}

#bookingCalendar {
    min-height: 650px;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-promo-wrap{
    width:92%;
    max-width:1280px;
    margin:38px auto 0;
}

.site-promo{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 30px 90px rgba(15, 23, 42, 0.18);
    background:linear-gradient(135deg, #101826, #1e293b);
    color:#fff;
}

.site-promo::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 30%),
        radial-gradient(circle at bottom left, rgba(199,164,106,0.18), transparent 35%);
    pointer-events:none;
}

.site-promo-inner{
    position:relative;
    z-index:2;
    padding:38px 34px;
}

.site-promo-label{
    display:inline-block;
    margin-bottom:14px;
    padding:6px 12px;
    border-radius:999px;
    background:rgba(255,255,255,0.12);
    color:#f6e7ca;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.site-promo h3{
    font-size:46px;
    color:inherit;
    margin-bottom:12px;
}

.site-promo p{
    max-width:780px;
    color:rgba(255,255,255,0.88);
    font-size:17px;
    line-height:1.8;
    margin-bottom:18px;
}

.site-promo-price{
    font-size:18px;
    margin-bottom:20px;
    color:#fff;
}

.site-promo-price strong{
    font-size:28px;
    color:#f6e7ca;
}

.site-promo-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 24px;
    border-radius:999px;
    background:#c7a46a;
    color:#fff;
    border:1px solid #c7a46a;
    font-size:14px;
    font-weight:600;
    transition:.35s ease;
    box-shadow:0 18px 35px rgba(0,0,0,0.18);
}

.site-promo-btn:hover{
    background:#a8854c;
    border-color:#a8854c;
    transform:translateY(-3px);
    color:#fff;
}

@media (max-width:768px){
    .site-promo-inner{
        padding:28px 22px;
    }

    .site-promo h3{
        font-size:34px;
    }

    .site-promo p{
        font-size:16px;
    }

    .site-promo-price strong{
        font-size:24px;
    }
}

