@charset "UTF-8";

/*
Theme Name: halorakairoscruises
*/

/* =========================================================
   RESET
========================================================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat', sans-serif;
    color:#252525;
    background:#fff;
    line-height:1.7;
}

img{
    width:100%;
    display:block;
    object-fit:cover;
}

a{
    color:inherit;
    text-decoration:none;
}

button,
input,
select{
    font-family:inherit;
}

.container{
    width:min(1180px, calc(100% - 40px));
    margin:auto;
}

.section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 55px;
}

.section-title .eyebrow{
    color:#b2915a;
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:12px;
}

.section-title h2{
    font-family:'Cormorant Garamond', serif;
    font-size:54px;
    line-height:1.05;
    font-weight:600;
    color:#173d42;
    margin-bottom:18px;
}

.section-title p{
    color:#777;
    font-size:15px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border:1px solid transparent;
    cursor:pointer;
    font-size:12px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
    transition:.3s ease;
}

.btn-gold{
    background:#b2915a;
    color:#fff;
}

.btn-gold:hover{
    background:#927443;
    transform:translateY(-2px);
}

.btn-outline{
    border-color:#fff;
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#173d42;
}


/* =========================================================
   HEADER
========================================================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    transition:.35s ease;
}

.header.scrolled{
    background:rgba(12,48,53,.97);
    box-shadow:0 5px 25px rgba(0,0,0,.15);
}

.nav{
    height:88px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    flex-direction:column;
    color:#fff;
    line-height:1;
}

.logo-main{
    font-family:'Cormorant Garamond',serif;
    font-size:31px;
    letter-spacing:1px;
}

.logo-sub{
    font-size:8px;
    letter-spacing:4px;
    margin-top:6px;
    text-transform:uppercase;
    color:#d6bb83;
}

.menu{
    display:flex;
    align-items:center;
    gap:30px;
    color:#fff;
    font-size:11px;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.menu a{
    position:relative;
}

.menu a:after{
    content:'';
    position:absolute;
    bottom:-8px;
    left:0;
    width:0;
    height:1px;
    background:#d6bb83;
    transition:.3s;
}

.menu a:hover:after{
    width:100%;
}

.header-btn{
    padding:11px 19px;
    border:1px solid #d6bb83;
    color:#fff;
}

.header-btn:hover{
    background:#d6bb83;
    color:#173d42;
}

.mobile-toggle{
    display:none;
    background:none;
    border:0;
    color:#fff;
    font-size:27px;
    cursor:pointer;
}


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

.hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    background:
        linear-gradient(
            90deg,
            rgba(5,35,40,.75),
            rgba(5,35,40,.35),
            rgba(5,35,40,.2)
        ),
        url("https://images.unsplash.com/photo-1528127269322-539801943592?auto=format&fit=crop&w=2000&q=85")
        center/cover no-repeat;
    color:#fff;
}

.hero-content{
    max-width:750px;
    padding-top:80px;
}

.hero-eyebrow{
    font-size:13px;
    letter-spacing:5px;
    text-transform:uppercase;
    color:#d6bb83;
    margin-bottom:18px;
}

.hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:78px;
    font-weight:500;
    line-height:.95;
    margin-bottom:25px;
}

.hero h1 span{
    display:block;
    color:#e2cb9a;
}

.hero p{
    max-width:620px;
    font-size:16px;
    font-weight:300;
    margin-bottom:35px;
    color:#f1f1f1;
}

.hero-buttons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.hero-scroll{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    text-align:center;
    font-size:9px;
    letter-spacing:3px;
    text-transform:uppercase;
    opacity:.8;
}

.hero-scroll span{
    display:block;
    margin-top:8px;
    font-size:20px;
}


/* =========================================================
   BOOKING BAR
========================================================= */

.booking-wrap{
    position:relative;
    z-index:10;
    margin-top:-45px;
}

.booking-box{
    background:#fff;
    box-shadow:0 15px 45px rgba(0,0,0,.14);
    display:grid;
    grid-template-columns:repeat(4,1fr) auto;
}

.booking-item{
    padding:20px 22px;
    border-right:1px solid #e5e5e5;
}

.booking-item label{
    display:block;
    font-size:10px;
    color:#999;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:7px;
}

.booking-item input,
.booking-item select{
    width:100%;
    border:0;
    outline:0;
    font-size:14px;
    color:#333;
    background:transparent;
}

.booking-submit{
    border:0;
    padding:0 30px;
    background:#b2915a;
    color:#fff;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    cursor:pointer;
}


/* =========================================================
   INTRO
========================================================= */

.intro{
    background:#f7f6f2;
}

.intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.intro-image{
    position:relative;
}

.intro-image img{
    height:590px;
}

.image-caption{
    position:absolute;
    bottom:25px;
    left:25px;
    background:#fff;
    padding:17px 22px;
    color:#173d42;
    font-family:'Cormorant Garamond',serif;
    font-size:23px;
}

.intro-content .eyebrow{
    color:#b2915a;
    font-size:11px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.intro-content h2{
    font-family:'Cormorant Garamond',serif;
    color:#173d42;
    font-size:56px;
    line-height:1.05;
    font-weight:600;
    margin-bottom:22px;
}

.intro-content p{
    color:#777;
    margin-bottom:18px;
    font-size:15px;
}

.signature{
    margin-top:28px;
    font-family:'Cormorant Garamond',serif;
    font-size:30px;
    color:#b2915a;
}


/* =========================================================
   FEATURES
========================================================= */

.features{
    background:#fff;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid #e8e5de;
    border-left:1px solid #e8e5de;
}

.feature{
    padding:38px 30px;
    border-right:1px solid #e8e5de;
    border-bottom:1px solid #e8e5de;
    text-align:center;
}

.feature-icon{
    font-size:32px;
    color:#b2915a;
    margin-bottom:18px;
}

.feature h3{
    font-family:'Cormorant Garamond',serif;
    color:#173d42;
    font-size:27px;
    margin-bottom:8px;
}

.feature p{
    font-size:13px;
    color:#888;
}


/* =========================================================
   CABINS
========================================================= */

.cabins{
    background:#f7f6f2;
}

.cabin-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.cabin-card{
    background:#fff;
    overflow:hidden;
    transition:.4s ease;
}

.cabin-card:hover{
    transform:translateY(-7px);
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.cabin-image{
    height:280px;
    overflow:hidden;
}

.cabin-image img{
    height:100%;
    transition:.5s ease;
}

.cabin-card:hover img{
    transform:scale(1.05);
}

.cabin-content{
    padding:25px;
}

.cabin-content h3{
    font-family:'Cormorant Garamond',serif;
    font-size:25px;
    color:#173d42;
    margin-bottom:7px;
}

.cabin-meta{
    font-size:11px;
    color:#b2915a;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:13px;
}

.cabin-content p{
    font-size:13px;
    color:#777;
    margin-bottom:18px;
}

.cabin-link{
    font-size:11px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:#173d42;
    font-weight:600;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience{
    background:#143d42;
    color:#fff;
}

.experience .section-title h2{
    color:#fff;
}

.experience .section-title p{
    color:#bfcacb;
}

.experience-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.experience-card{
    min-height:420px;
    position:relative;
    overflow:hidden;
}

.experience-card img{
    height:100%;
    position:absolute;
    inset:0;
    transition:.5s ease;
}

.experience-card:hover img{
    transform:scale(1.06);
}

.experience-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
    background:linear-gradient(transparent 30%,rgba(0,0,0,.75));
}

.experience-overlay h3{
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    margin-bottom:6px;
}

.experience-overlay p{
    font-size:13px;
    color:#eee;
}


/* =========================================================
   ITINERARY
========================================================= */

.itinerary-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.itinerary-image img{
    height:560px;
}

.timeline{
    position:relative;
    padding-left:45px;
}

.timeline:before{
    content:'';
    position:absolute;
    top:0;
    bottom:0;
    left:9px;
    width:1px;
    background:#d7d0c1;
}

.timeline-item{
    position:relative;
    padding-bottom:30px;
}

.timeline-item:before{
    content:'';
    position:absolute;
    left:-41px;
    top:5px;
    width:11px;
    height:11px;
    border:2px solid #b2915a;
    background:#fff;
    border-radius:50%;
}

.timeline-item h3{
    font-family:'Cormorant Garamond',serif;
    font-size:28px;
    color:#173d42;
    margin-bottom:4px;
}

.timeline-item span{
    display:block;
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#b2915a;
    margin-bottom:7px;
}

.timeline-item p{
    color:#777;
    font-size:13px;
}


/* =========================================================
   STATS
========================================================= */

.stats{
    background:#f7f6f2;
    padding:65px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
}

.stat{
    border-right:1px solid #ddd;
}

.stat:last-child{
    border-right:0;
}

.stat-number{
    font-family:'Cormorant Garamond',serif;
    color:#173d42;
    font-size:55px;
    line-height:1;
}

.stat-label{
    margin-top:8px;
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#888;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    grid-template-rows:260px 260px;
    gap:8px;
}

.gallery-item{
    overflow:hidden;
    cursor:pointer;
}

.gallery-item:first-child{
    grid-row:span 2;
}

.gallery-item img{
    height:100%;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.06);
}


/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonials{
    background:#f7f6f2;
}

.testimonial-slider{
    max-width:850px;
    margin:auto;
    text-align:center;
}

.quote{
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    line-height:1.3;
    color:#173d42;
}

.quote-mark{
    font-family:Georgia,serif;
    font-size:70px;
    color:#b2915a;
    line-height:.5;
}

.author{
    margin-top:22px;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#999;
}


/* =========================================================
   FAQ
========================================================= */

.faq{
    max-width:800px;
    margin:auto;
}

.faq-item{
    border-bottom:1px solid #ddd;
}

.faq-question{
    padding:20px 0;
    display:flex;
    justify-content:space-between;
    cursor:pointer;
    font-family:'Cormorant Garamond',serif;
    font-size:25px;
    color:#173d42;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.4s ease;
    color:#777;
    font-size:14px;
}

.faq-item.active .faq-answer{
    max-height:200px;
    padding-bottom:20px;
}

.faq-icon{
    font-family:Arial,sans-serif;
    font-size:18px;
}


/* =========================================================
   CTA
========================================================= */

.cta{
    position:relative;
    padding:110px 20px;
    text-align:center;
    color:#fff;
    background:
        linear-gradient(rgba(8,48,53,.75),rgba(8,48,53,.75)),
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=85")
        center/cover;
}

.cta h2{
    font-family:'Cormorant Garamond',serif;
    font-size:60px;
    line-height:1;
    margin-bottom:20px;
}

.cta p{
    max-width:650px;
    margin:0 auto 30px;
    color:#eee;
}


/* =========================================================
   FOOTER
========================================================= */

.footer{
    background:#0d3035;
    color:#cbd4d5;
    padding:70px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1.2fr;
    gap:50px;
    padding-bottom:50px;
}

.footer h3{
    color:#fff;
    font-family:'Cormorant Garamond',serif;
    font-size:27px;
    margin-bottom:17px;
}

.footer p,
.footer li{
    font-size:12px;
    color:#aebdbf;
}

.footer ul{
    list-style:none;
}

.footer li{
    margin-bottom:9px;
}

.footer a:hover{
    color:#d6bb83;
}

.footer-logo{
    font-family:'Cormorant Garamond',serif;
    color:#fff;
    font-size:35px;
    margin-bottom:15px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:22px;
    display:flex;
    justify-content:space-between;
    gap:20px;
    font-size:10px;
    color:#789093;
}


/* =========================================================
   FLOATING BUTTONS
========================================================= */

.float-buttons{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:900;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.float-btn{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#b2915a;
    color:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.2);
    font-size:19px;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    z-index:2000;
    display:none;
    align-items:center;
    justify-content:center;
    padding:30px;
}

.lightbox.active{
    display:flex;
}

.lightbox img{
    max-width:1000px;
    max-height:85vh;
    width:auto;
}

.lightbox-close{
    position:absolute;
    right:25px;
    top:20px;
    color:#fff;
    font-size:35px;
    cursor:pointer;
}


/* =========================================================
   ANIMATION
========================================================= */

.reveal{
    opacity:0;
    transform:translateY(35px);
    transition:opacity .8s ease,transform .8s ease;
}

.reveal.visible{
    opacity:1;
    transform:translateY(0);
}


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

@media(max-width:1000px){

    .menu{
        gap:17px;
    }

    .hero h1{
        font-size:65px;
    }

    .booking-box{
        grid-template-columns:repeat(2,1fr);
    }

    .booking-submit{
        min-height:60px;
        grid-column:span 2;
    }

    .intro-grid,
    .itinerary-grid{
        gap:40px;
    }

    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cabin-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .experience-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

    .stat{
        border-right:0;
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:767px){

    .container{
        width:min(100% - 30px,1180px);
    }

    .section{
        padding:70px 0;
    }

    .section-title{
        margin-bottom:38px;
    }

    .section-title h2{
        font-size:43px;
    }

    .nav{
        height:72px;
    }

    .mobile-toggle{
        display:block;
    }

    .menu{
        position:absolute;
        top:72px;
        left:0;
        width:100%;
        background:#0d3035;
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        padding:10px 20px 20px;
    }

    .menu.active{
        display:flex;
    }

    .menu a{
        padding:14px 0;
        border-bottom:1px solid rgba(255,255,255,.1);
    }

    .header-btn{
        text-align:center;
        margin-top:10px;
    }

    .hero{
        min-height:760px;
    }

    .hero-content{
        padding-top:100px;
    }

    .hero h1{
        font-size:55px;
    }

    .hero p{
        font-size:14px;
    }

    .hero-scroll{
        display:none;
    }

    .booking-wrap{
        margin-top:0;
        padding-top:15px;
        background:#fff;
    }

    .booking-box{
        grid-template-columns:1fr;
        box-shadow:0 5px 20px rgba(0,0,0,.1);
    }

    .booking-item{
        border-right:0;
        border-bottom:1px solid #e5e5e5;
    }

    .booking-submit{
        grid-column:auto;
        min-height:55px;
    }

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

    .intro-image img{
        height:420px;
    }

    .intro-content h2{
        font-size:45px;
    }

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

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

    .cabin-image{
        height:240px;
    }

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

    .experience-card{
        min-height:360px;
    }

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

    .itinerary-image img{
        height:400px;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
        gap:35px 10px;
    }

    .stat-number{
        font-size:44px;
    }

    .gallery-grid{
        grid-template-columns:1fr 1fr;
        grid-template-rows:180px 180px 180px;
    }

    .gallery-item:first-child{
        grid-column:span 2;
        grid-row:auto;
    }

    .quote{
        font-size:27px;
    }

    .cta{
        padding:80px 20px;
    }

    .cta h2{
        font-size:47px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-bottom{
        flex-direction:column;
    }

    .float-buttons{
        right:14px;
        bottom:14px;
    }

    .float-btn{
        width:46px;
        height:46px;
    }
}
