:root{
    --dark:#07110e;
    --green:#123a2e;
    --accent:#e9c46a;
    --cream:#f5f1e8;
    --text:#18221f;
    --muted:#66726e;
}


/* =====================================================
   RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Inter",sans-serif;
    background:#f5f3ed;
    color:var(--text);
    overflow-x:hidden;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar{
    min-height:82px;
    padding:0 6%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;

    background:rgba(7,17,14,.96);

    position:sticky;
    top:0;
    z-index:1000;

    backdrop-filter:blur(10px);
}


.navbar-logo{
    display:flex;
    align-items:center;
    gap:11px;

    text-decoration:none;

    min-height:82px;

    flex-shrink:0;
}


.navbar-logo img{
    width:46px;
    height:46px;

    object-fit:contain;

    display:block;
}


.navbar-logo-text{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;

    line-height:1;
}


.navbar-logo-text strong{
    display:block;

    color:#ffffff;

    font-family:"Playfair Display",serif;
    font-size:21px;
    font-weight:700;

    line-height:1.1;
}


.navbar-logo-text small{
    display:block;

    margin-top:5px;

    color:var(--accent);

    font-family:"Inter",sans-serif;
    font-size:9px;
    font-weight:700;

    letter-spacing:1.6px;
    line-height:1;
}


.nav-menu{
    display:flex;
    align-items:center;
    gap:24px;
}


.nav-menu a{
    color:rgba(255,255,255,.75);

    text-decoration:none;

    font-size:13px;

    transition:.25s;
}


.nav-menu a:hover{
    color:#ffffff;
}


.back-button{
    padding:10px 15px;

    border:1px solid rgba(255,255,255,.25);
    border-radius:30px;

    display:flex;
    align-items:center;
    gap:7px;
}


/* =====================================================
   HERO
===================================================== */

.hero{
    min-height:75vh;

    position:relative;

    display:flex;
    align-items:center;

    padding:80px 8%;

    color:white;

    overflow:hidden;

    background:var(--dark);
}


/* =====================================================
   HERO SLIDESHOW
===================================================== */

.hero-slideshow{
    position:absolute;
    inset:0;

    z-index:0;

    overflow:hidden;
}


.hero-slide{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    opacity:0;

    transform:scale(1.04);

    transition:
        opacity 1.5s ease-in-out,
        transform 7s ease;
}


.hero-slide.active{
    opacity:1;

    transform:scale(1.10);
}


.hero-overlay{
    position:absolute;
    inset:0;

    z-index:1;

    background:
        linear-gradient(
            90deg,
            rgba(3,15,11,.92) 0%,
            rgba(3,15,11,.68) 38%,
            rgba(3,15,11,.30) 68%,
            rgba(3,15,11,.18) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0,0,0,.10),
            rgba(0,0,0,.34)
        );
}


.hero-content{
    position:relative;

    z-index:2;

    max-width:700px;
}


.eyebrow,
.section-label{
    color:#b38a2d;

    font-weight:700;

    letter-spacing:2px;

    font-size:11px;
}


.hero h1{
    font-family:"Playfair Display",serif;

    font-size:clamp(50px,7vw,90px);

    line-height:.98;

    margin:20px 0;
}


.hero h1 span{
    color:var(--accent);
}


.hero p{
    color:rgba(255,255,255,.78);

    line-height:1.8;

    max-width:570px;
}


.hero-buttons{
    display:flex;
    gap:12px;

    margin-top:30px;
}


.btn-primary,
.btn-secondary{
    padding:13px 20px;

    border-radius:30px;

    text-decoration:none;

    font-size:13px;
    font-weight:600;

    transition:.25s;
}


.btn-primary{
    background:var(--accent);

    color:#14231e;
}


.btn-primary:hover{
    transform:translateY(-2px);

    background:#f2ce77;
}


.btn-secondary{
    border:1px solid rgba(255,255,255,.4);

    color:white;
}


.btn-secondary:hover{
    background:rgba(255,255,255,.10);

    border-color:white;
}


/* =====================================================
   SLIDE INDICATORS
===================================================== */

.slide-indicators{
    display:flex;
    align-items:center;
    gap:8px;

    margin-top:25px;
}


.slide-dot{
    width:8px;
    height:8px;

    border:none;
    border-radius:999px;

    background:rgba(255,255,255,.45);

    cursor:pointer;

    transition:
        width .3s ease,
        background .3s ease,
        transform .3s ease;
}


.slide-dot:hover{
    background:white;

    transform:scale(1.15);
}


.slide-dot.active{
    width:28px;

    background:var(--accent);
}


/* =====================================================
   INTRO
===================================================== */

.intro{
    text-align:center;

    padding:95px 20px;

    max-width:900px;

    margin:auto;
}


.intro h2{
    margin:14px auto;

    font-family:"Playfair Display",serif;

    font-size:42px;
}


.intro h2 span{
    font-style:italic;

    color:#54786a;
}


.intro-description{
    color:var(--muted);

    line-height:1.8;

    max-width:700px;

    margin:auto;
}


/* =====================================================
   SECTION GENERAL
===================================================== */

.category-section,
.articles-section,
.education-extra{
    padding:80px 7%;
}


.section-heading{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;

    gap:20px;

    margin-bottom:35px;
}


.section-heading h2{
    font-family:"Playfair Display",serif;

    font-size:36px;

    margin-top:8px;
}


/* =====================================================
   CATEGORY
===================================================== */

.category-grid{
    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:12px;
}


.category-card{
    border:1px solid #ddd8cd;

    background:white;

    min-height:110px;

    border-radius:15px;

    cursor:pointer;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:10px;

    transition:.25s;

    font-family:"Inter",sans-serif;
}


.category-card i{
    font-size:22px;

    color:#315b4c;
}


.category-card:hover,
.category-card.active{
    background:var(--green);

    color:white;

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(18,58,46,.14);
}


.category-card.active i,
.category-card:hover i{
    color:var(--accent);
}


/* =====================================================
   FEATURED ARTICLE
===================================================== */

.featured{
    width:86%;

    margin:40px auto 80px;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    background:#0d2d23;

    color:white;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(20,40,34,.12);
}


.featured-image{
    position:relative;

    min-height:480px;
}


.featured-image img{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    filter:saturate(1.08) contrast(1.03);
}


.featured-badge{
    position:absolute;

    left:25px;
    top:25px;

    background:var(--accent);

    color:#14231e;

    padding:8px 12px;

    border-radius:20px;

    font-size:10px;
    font-weight:700;

    letter-spacing:1px;
}


.featured-content{
    padding:55px;

    display:flex;
    flex-direction:column;
    justify-content:center;
}


.article-category{
    color:var(--accent);

    letter-spacing:1.5px;

    font-size:11px;
    font-weight:700;
}


.featured h2{
    font-family:"Playfair Display",serif;

    font-size:40px;

    margin:17px 0;
}


.featured-content > p{
    color:rgba(255,255,255,.7);

    line-height:1.8;
}


.article-meta{
    display:flex;
    flex-wrap:wrap;

    gap:20px;

    margin:25px 0;

    font-size:12px;

    color:rgba(255,255,255,.65);
}


.read-more{
    width:max-content;

    color:var(--accent);

    text-decoration:none;

    font-weight:600;

    transition:.25s;
}


.read-more:hover{
    transform:translateX(4px);
}


/* =====================================================
   SEARCH
===================================================== */

.search-box{
    width:260px;

    display:flex;
    align-items:center;

    gap:8px;

    background:white;

    border:1px solid #ddd;

    border-radius:30px;

    padding:10px 16px;

    transition:.25s;
}


.search-box:focus-within{
    border-color:#315b4c;

    box-shadow:0 0 0 3px rgba(49,91,76,.08);
}


.search-box i{
    color:#7b8682;
}


.search-box input{
    width:100%;

    border:0;

    outline:0;

    background:transparent;

    font-family:"Inter",sans-serif;
}


/* =====================================================
   ARTICLES
===================================================== */

.article-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;
}


.article-card{
    overflow:hidden;

    border-radius:18px;

    background:white;

    box-shadow:0 10px 40px rgba(30,40,35,.08);

    transition:
        transform .25s,
        box-shadow .25s;
}


.article-card:hover{
    transform:translateY(-5px);

    box-shadow:0 18px 45px rgba(30,40,35,.13);
}


.article-image{
    height:220px;

    position:relative;

    overflow:hidden;
}


.article-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .45s ease;
}


.article-card:hover .article-image img{
    transform:scale(1.05);
}


.article-image span{
    position:absolute;

    left:15px;
    bottom:15px;

    background:#f5f1e8;

    padding:7px 10px;

    border-radius:15px;

    font-size:10px;
    font-weight:700;
}


.article-body{
    padding:22px;
}


.article-location{
    font-size:11px;

    color:#8a6b29;

    margin-bottom:10px;
}


.article-body h3{
    font-family:"Playfair Display",serif;

    font-size:22px;

    margin-bottom:12px;
}


.article-body > p{
    color:var(--muted);

    line-height:1.7;

    font-size:13px;
}


.article-body a{
    display:inline-block;

    margin-top:18px;

    color:#214d3c;

    text-decoration:none;

    font-weight:700;

    font-size:12px;

    transition:.25s;
}


.article-body a:hover{
    transform:translateX(4px);
}


/* =====================================================
   EDUCATION TABLE
===================================================== */

.education-table-wrapper{
    overflow-x:auto;

    margin-bottom:80px;

    background:white;

    border-radius:18px;

    box-shadow:0 10px 35px rgba(30,40,35,.08);
}


.education-table{
    width:100%;

    border-collapse:collapse;

    min-width:800px;
}


.education-table th,
.education-table td{
    padding:18px 20px;

    text-align:left;

    border-bottom:1px solid #ece8df;

    font-size:13px;
}


.education-table th{
    background:var(--green);

    color:white;

    font-weight:600;
}


.education-table tbody tr{
    transition:.25s;
}


.education-table tbody tr:hover{
    background:#f8f5ed;
}


.education-table td:first-child{
    font-weight:700;

    color:#8a6b29;
}


/* =====================================================
   EDUCATION LIST
===================================================== */

.travel-benefit{
    background:white;

    border-radius:22px;

    padding:55px;

    margin-bottom:80px;

    box-shadow:0 10px 35px rgba(30,40,35,.06);
}


.benefit-content{
    max-width:760px;
}


.travel-benefit h2{
    font-family:"Playfair Display",serif;

    font-size:38px;

    margin:12px 0 25px;
}


.benefit-list{
    list-style:none;

    display:grid;

    gap:16px;
}


.benefit-list li{
    display:flex;
    align-items:center;

    gap:12px;

    color:var(--muted);

    line-height:1.6;
}


.benefit-list i{
    width:28px;
    height:28px;

    flex-shrink:0;

    border-radius:50%;

    background:var(--green);

    color:var(--accent);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:11px;
}


/* =====================================================
   VIDEO SECTION
===================================================== */

.education-video{
    background:#0d2d23;

    color:white;

    border-radius:25px;

    padding:55px;

    display:grid;

    grid-template-columns:.8fr 1.2fr;

    gap:50px;

    align-items:center;

    margin-bottom:80px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(20,40,34,.12);
}


.video-text h2{
    font-family:"Playfair Display",serif;

    font-size:38px;

    margin:12px 0 18px;
}


.video-text p:last-child{
    color:rgba(255,255,255,.7);

    line-height:1.8;
}


.video-wrapper{
    overflow:hidden;

    border-radius:18px;

    background:#07110e;

    box-shadow:0 20px 40px rgba(0,0,0,.2);
}


.video-wrapper video{
    display:block;

    width:100%;

    aspect-ratio:16/9;

    object-fit:cover;
}


/* =====================================================
   DESTINATION FORM
===================================================== */

.destination-form{
    display:grid;

    grid-template-columns:.8fr 1.2fr;

    gap:55px;

    align-items:start;
}


.form-info{
    position:sticky;

    top:120px;
}


.form-info h2{
    font-family:"Playfair Display",serif;

    font-size:40px;

    margin:12px 0 20px;
}


.form-info p:last-child{
    line-height:1.8;

    color:var(--muted);
}


.destination-form form{
    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 40px rgba(30,40,35,.08);
}


.form-group{
    margin-bottom:18px;
}


.form-group label{
    display:block;

    margin-bottom:8px;

    font-size:12px;
    font-weight:700;
}


.form-group input,
.form-group select,
.form-group textarea{
    width:100%;

    padding:13px 15px;

    border:1px solid #ddd8cd;

    border-radius:10px;

    outline:none;

    font-family:"Inter",sans-serif;

    background:white;

    transition:.25s;
}


.form-group textarea{
    resize:vertical;

    min-height:120px;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#315b4c;

    box-shadow:0 0 0 3px rgba(49,91,76,.08);
}


.form-button{
    border:none;

    background:var(--green);

    color:white;

    padding:13px 22px;

    border-radius:30px;

    font-family:"Inter",sans-serif;

    font-weight:600;

    cursor:pointer;

    display:inline-flex;
    align-items:center;

    gap:8px;

    transition:.25s;
}


.form-button:hover{
    transform:translateY(-2px);

    background:#0d2d23;

    box-shadow:0 10px 25px rgba(18,58,46,.18);
}


.form-message{
    margin-top:15px;

    min-height:20px;

    font-size:13px;

    color:#315b4c;

    font-weight:600;
}


/* =====================================================
   ABOUT
===================================================== */

.about{
    margin-top:80px;

    padding:90px 8%;

    background:#0d2d23;

    color:white;

    display:grid;

    grid-template-columns:180px 1fr;

    gap:50px;

    align-items:center;
}


.about-icon{
    width:150px;
    height:150px;

    border:1px solid rgba(255,255,255,.2);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:55px;

    color:var(--accent);
}


.about h2{
    font-family:"Playfair Display",serif;

    font-size:44px;

    margin:12px 0;
}


.about p:last-child{
    max-width:650px;

    color:rgba(255,255,255,.65);

    line-height:1.8;
}


/* =====================================================
   FOOTER
===================================================== */

footer{
    background:var(--dark);

    color:white;

    padding:40px 7%;

    display:flex;
    justify-content:space-between;
    align-items:center;
}


.footer-brand h3{
    font-family:"Playfair Display",serif;
}


.footer-brand p,
.footer-right{
    font-size:12px;

    color:rgba(255,255,255,.5);

    margin-top:5px;
}


/* =====================================================
   SMALL ANIMATION
===================================================== */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(18px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


.hero-content{
    animation:fadeUp .9s ease both;
}


/* =====================================================
   RESPONSIVE TABLET
===================================================== */

@media(max-width:900px){

    .nav-menu{
        gap:14px;
    }

    .nav-menu > a:not(.back-button){
        display:none;
    }


    .category-grid{
        grid-template-columns:repeat(3,1fr);
    }


    .featured{
        grid-template-columns:1fr;
    }


    .featured-image{
        min-height:320px;
    }


    .article-grid{
        grid-template-columns:repeat(2,1fr);
    }


    .education-video,
    .destination-form{
        grid-template-columns:1fr;
    }


    .form-info{
        position:static;
    }

}


/* =====================================================
   RESPONSIVE MOBILE
===================================================== */

@media(max-width:600px){

    .navbar{
        padding:0 18px;
    }


    .navbar-logo img{
        width:42px;
        height:42px;
    }


    .navbar-logo-text strong{
        font-size:17px;
    }


    .navbar-logo-text small{
        font-size:8px;

        letter-spacing:1.2px;
    }


    .back-button{
        padding:9px 12px;

        font-size:11px !important;
    }


    .hero{
        padding:70px 22px;

        min-height:80vh;
    }


    .hero h1{
        font-size:52px;
    }


    .hero-buttons{
        flex-direction:column;

        align-items:flex-start;
    }


    .btn-primary,
    .btn-secondary{
        width:100%;

        text-align:center;
    }


    .intro{
        padding:70px 20px;
    }


    .intro h2{
        font-size:33px;
    }


    .category-section,
    .articles-section,
    .education-extra{
        padding:60px 20px;
    }


    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }


    .featured{
        width:calc(100% - 40px);

        margin-bottom:60px;
    }


    .featured-content{
        padding:30px 24px;
    }


    .featured h2{
        font-size:30px;
    }


    .section-heading{
        align-items:flex-start;

        flex-direction:column;
    }


    .section-heading h2{
        font-size:31px;
    }


    .search-box{
        width:100%;
    }


    .article-grid{
        grid-template-columns:1fr;
    }


    .travel-benefit{
        padding:35px 25px;
    }


    .travel-benefit h2,
    .video-text h2,
    .form-info h2{
        font-size:30px;
    }


    .education-video{
        padding:30px 24px;

        gap:30px;
    }


    .destination-form{
        gap:30px;
    }


    .destination-form form{
        padding:25px 20px;
    }


    .about{
        grid-template-columns:1fr;

        padding:70px 25px;
    }


    .about-icon{
        width:100px;
        height:100px;

        font-size:40px;
    }


    .about h2{
        font-size:35px;
    }


    footer{
        gap:15px;

        flex-direction:column;

        align-items:flex-start;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media(max-width:390px){

    .hero h1{
        font-size:44px;
    }


    .category-grid{
        grid-template-columns:1fr 1fr;
    }


    .navbar-logo-text small{
        display:none;
    }


    .back-button{
        padding:8px 10px;
    }
    /* =====================================================
   JAVASCRIPT SCROLL ANIMATION
===================================================== */

.scroll-animation{
    opacity:0;
    transform:translateY(28px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}

.scroll-animation.show-animation{
    opacity:1;
    transform:translateY(0);
}


/* =====================================================
   FORM MESSAGE
===================================================== */

.form-message.success{
    color:#2f735c;
}

.form-message.error{
    color:#b74747;
}

}