/*=========================================================
Campbell River Lodge
Book Direct

booking.css
Version 1.0

Designed & Built by Haydn Picton
Development Assistance by OpenAI ChatGPT

July 2026
=========================================================*/


/*=========================================================
BOOKING HERO
=========================================================*/

.book-hero{

    position:relative;

    min-height:75vh;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

    margin-top:70px;

    padding:120px 30px 80px;

}

.book-hero-image{

    position:absolute;

    inset:0;

    background:url("../Images/River/River15.jpg") center center/cover no-repeat;

    filter:brightness(.72);

    transform:scale(1.08);

    animation:heroZoom 20s ease-in-out infinite alternate;

}

@keyframes heroZoom{

    from{

        transform:scale(1.08);

    }

    to{

        transform:scale(1.15);

    }

}

.book-hero-overlay{

    position:relative;

    z-index:2;

    width:min(760px,90%);

    text-align:center;

    background:rgba(255,255,255,.16);

    backdrop-filter:blur(14px);

    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.35);

    border-radius:24px;

    padding:70px 60px 60px;

    color:#fff;

    box-shadow:0 25px 70px rgba(0,0,0,.35);

}

.book-hero-overlay h1{

    font-size:clamp(2.6rem,5vw,4.2rem);

    margin:20px 0;

    color:#fff;

}

.book-hero-overlay p{

    font-size:1.15rem;

    line-height:1.9;

    max-width:720px;

    margin:0 auto 40px;

    opacity:.95;

}


/*=========================================================
BOOKING PAGE
=========================================================*/

.booking-page{

    background:#f7f7f4;

    padding:90px 30px;

}

.booking-container{

    max-width:1400px;

    margin:auto;

}

.booking-header{

    text-align:center;

    margin-bottom:70px;

}

.booking-header h2{

    font-size:3rem;

    margin:15px 0;

    color:#2d4532;

}

.booking-header p{

    max-width:760px;

    margin:auto;

    line-height:1.9;

    color:#666;

}


/*=========================================================
TRUST BADGES
=========================================================*/

.booking-benefits{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:45px;

}

.benefit-card{

    background:#fff;

    padding:18px 28px;

    border-radius:50px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    font-weight:600;

    color:#355b3b;

    transition:.3s;

}

.benefit-card:hover{

    transform:translateY(-4px);

}


/*=========================================================
MAIN LAYOUT
=========================================================*/

.booking-wrapper{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:45px;

    align-items:start;

    margin-top:60px;

}


/*=========================================================
LEFT PANEL
=========================================================*/

.booking-form{

    background:#fff;

    border-radius:22px;

    padding:45px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}


/*=========================================================
RIGHT PANEL
=========================================================*/

.booking-sidebar{

    display:flex;

    flex-direction:column;

    gap:30px;

}

.info-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.info-card h3{

    color:#355b3b;

    margin-bottom:18px;

}

.info-card p{

    color:#666;

    line-height:1.8;

}

.info-card ul{

    list-style:none;

    padding:0;

    margin:25px 0 0;

}

.info-card li{

    padding:10px 0;

    border-bottom:1px solid #ececec;

}

.info-card li:last-child{

    border:none;

}


/*=========================================================
RESPONSIVE
=========================================================*/

@media (max-width:1000px){

    .booking-wrapper{

        grid-template-columns:1fr;

    }

}

@media (max-width:768px){

    .book-hero{

    min-height:calc(100vh - 90px);

    padding:120px 20px 60px;

}
.book-hero{

    justify-content:flex-end;
}

.book-hero-overlay{

    margin-right:80px;
}

    .booking-page{

        padding:70px 20px;

    }

    .booking-form{

        padding:30px;

    }

}
/*=========================================================
ROOM CARDS
=========================================================*/

.room-intro{

    text-align:center;

    color:#666;

    margin-bottom:35px;

}

.room-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin:40px 0;

}

.room-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    cursor:pointer;

    border:2px solid transparent;

    transition:.35s;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.room-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.room-info{

    padding:25px;

}

.room-info h4{

    margin-bottom:10px;

    color:#355b3b;

}

.room-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.room-card.selected{

    border-color:#355b3b;

    transform:translateY(-6px);

}

.no-preference{

    text-align:center;

    margin-top:20px;

}
.room-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}
/*==================================================
SPECIAL REQUESTS
==================================================*/

.request-grid{

display:flex;

flex-wrap:wrap;

gap:15px;

margin:30px 0;

}

.request-chip{

cursor:pointer;

}

.request-chip input{

display:none;

}

.request-chip span{

display:block;

padding:12px 20px;

border-radius:30px;

background:#f2f2f2;

transition:.3s;

font-weight:600;

}

.request-chip input:checked + span{

background:#355b3b;

color:#fff;

}

.form-intro{

color:#666;

line-height:1.8;

margin-bottom:25px;

}

textarea{

width:100%;

padding:18px;

border-radius:15px;

border:1px solid #ddd;

font-family:inherit;

font-size:1rem;

resize:vertical;

min-height:180px;

}

.booking-disclaimer{

background:#f7f7f7;

padding:22px;

border-left:5px solid #355b3b;

margin:35px 0;

border-radius:10px;

line-height:1.8;

}

.submit-area{

text-align:center;

margin-top:40px;

}

.submit-booking{

font-size:1.1rem;

padding:18px 45px;

}

.response-time{

margin-top:18px;

color:#777;

font-size:.95rem;

}
/*=========================================================
BOOKING.COM LINK
=========================================================*/

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.booking-alternative{

    margin-top:20px;

    text-align:center;

}

.booking-alternative p{

    color:#fff;

    opacity:.9;

    margin-bottom:8px;

}

.booking-alternative a{

    color:#fff;

    font-weight:700;

    text-decoration:none;

    border-bottom:2px solid rgba(255,255,255,.35);

    transition:.3s;

}

.booking-alternative a:hover{

    border-bottom-color:#fff;

}

.hero-note{

    max-width:720px;

    margin:35px auto 0;

    color:rgba(255,255,255,.92);

    line-height:1.8;

    font-size:.95rem;

}
.booking-alternative a{

    color:#7ecb88;

    font-weight:700;

}