/* =====================================================
   SERENGETI HEROES
   LUXURY HERO SECTION
=====================================================*/


:root{

    --hero-height:85vh;

    --acacia-green:#1C2B24;
    --khaki-sand:#EDE6D6;
    --savanna-gold:#B8863B;
    --olive-black:#1B211A;

}


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

.logbook-hero-section{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:flex-start;

    min-height:var(--hero-height);

    padding:90px 70px;

    overflow:hidden;

    isolation:isolate;


    background-image:url('/wp-content/uploads/2026/07/Serengeti-Heroes-Hero-1.jpg');

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

}

.logbook-hero-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:inherit;

    background-size:cover;

    background-position:center;

    transform:scale(1.08);

    filter:brightness(.92);

    z-index:-1;

}


/* =====================================================
   CINEMATIC OVERLAY v2
=====================================================*/

.hero-dark-overlay{

    position:absolute;
    inset:0;
    z-index:1;

    background:

    linear-gradient(
        90deg,
        rgba(5,10,8,.98) 0%,
        rgba(5,10,8,.95) 22%,
        rgba(5,10,8,.88) 45%,
        rgba(5,10,8,.68) 72%,
        rgba(5,10,8,.38) 100%
    ),

    linear-gradient(
        180deg,
        rgba(0,0,0,.20),
        rgba(0,0,0,.55)
    );

}


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

.hero-content-container{

    position:relative;

    z-index:2;

    width:100%;

    max-width:1400px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:100px;

}



/* =====================================================
   FIELD NOTE
=====================================================*/

/* =====================================================
   EXPEDITION LOG
=====================================================*/


.hero-field-note{

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:10px;

    width:100%;

    margin:0 auto 40px;

    text-align:center;

    font-family:'IBM Plex Mono',monospace;
    font-size:11px;
    font-weight:600;

    letter-spacing:.28em;
    text-transform:uppercase;

    color:rgba(237,230,214,.88);

}

.hero-field-note::after{

    content:"";

    width:90px;
    height:2px;

    margin-top:18px;

    background:var(--savanna-gold);

}

.coordinates-gps{

    display:block;

    margin-top:2px;

    text-align:center;

    font-size:10px;

    letter-spacing:.18em;

    color:rgba(237,230,214,.60);

}



/* =====================================================
   MAIN TITLE
=====================================================*/

.hero-main-title{

    font-family:'Fraunces',serif;

    font-size:clamp(48px,5vw,74px);

    line-height:1.05;

    letter-spacing:-.03em;

    color:var(--khaki-sand);

    margin-bottom:32px;

    text-shadow:

        0 8px 35px rgba(0,0,0,.70);

}


.gold-serif{

    color:var(--savanna-gold);

    font-style:italic;

    font-weight:500;

}


/* =====================================================
   DESCRIPTION
=====================================================*/

.hero-description{

    max-width:620px;

    font-size:18px;

    line-height:1.9;

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

    margin-bottom:48px;

    text-shadow:

        0 2px 16px rgba(0,0,0,.60);

}



/* =====================================================
   BUTTON AREA
=====================================================*/

.hero-actions-container{

    display:flex;

    flex-wrap:wrap;

    gap:16px;

}



/* PRIMARY BUTTON */
.hero-primary-button{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:17px 36px;

    border-radius:999px;

    background:var(--savanna-gold);

    color:var(--acacia-green);

    font-weight:600;

    transition:.35s;

}

.hero-primary-button:hover{

    transform:translateY(-2px);

    box-shadow:0 18px 40px rgba(184,134,59,.35);

}



/* SECONDARY BUTTON */

.hero-secondary-button{


    display:inline-flex;

    align-items:center;


    padding:15px 34px;


    background:transparent;


    color:var(--khaki-sand);


    font-family:'Work Sans',sans-serif;

    font-size:13px;

    font-weight:500;

    letter-spacing:.08em;


    text-decoration:none;


    border:1px solid rgba(237,230,214,.35);


    transition:.3s ease;

}



.hero-secondary-button:hover{


    border-color:var(--khaki-sand);

    background:rgba(237,230,214,.08);

}



/* =====================================================
   ANIMATIONS
=====================================================*/

@keyframes fadeInUp{

    from{

        opacity:0;

        transform:translateY(20px);

    }


    to{

        opacity:1;

        transform:translateY(0);

    }

}



.animate-fade-in{

    animation:fadeInUp .8s ease forwards;

}


.animate-fade-in-delayed{

    opacity:0;

    animation:fadeInUp .8s ease .2s forwards;

}


.animate-fade-in-delayed-more{

    opacity:0;

    animation:fadeInUp .8s ease .4s forwards;

}



/* =====================================================
   MOBILE RESPONSIVE
=====================================================*/
@media(max-width:991px){

.logbook-hero-section{

    min-height:auto;

    padding:90px 30px;

}

.hero-content-container{

    flex-direction:column;

    gap:50px;

}

.hero-left{

    max-width:100%;

    padding-top:0;

}

.hero-main-title{

    font-size:44px;

}

.hero-actions-container{

    flex-direction:column;

}

.hero-primary-button,
.hero-secondary-button{

    width:100%;

    justify-content:center;

}

.expedition-card{

    width:100%;

}

}
.logbook-hero-section::before{

    filter:
        brightness(.55)
        contrast(1.08)
        saturate(.90)
        blur(2px);

}
.hero-dark-overlay{

    background:

    linear-gradient(

        180deg,

        rgba(5,10,8,.82),

        rgba(5,10,8,.72),

        rgba(5,10,8,.88)

    );

}

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

.hero-content-container{

display:flex;

justify-content:space-between;

align-items:center;

gap:80px;

max-width:1400px;

width:100%;

margin:0 auto;

}

.hero-left{

    position:relative;

    max-width:700px;

    padding-top:35px;

}

.hero-left::before{

    content:"";

    position:absolute;

    left:-120px;

    top:-90px;

    width:760px;

    height:620px;

    border-radius:50%;

    background:radial-gradient(

        circle,

        rgba(0,0,0,.40),

        rgba(0,0,0,.22),

        transparent 72%

    );

    z-index:-1;

}
.hero-right{

flex-shrink:0;

}

/* =====================================================
   EXPEDITION CARD
=====================================================*/
.expedition-card{

    width:320px;

    padding:32px;

    background:rgba(18,27,22,.62);

    backdrop-filter:blur(18px);

    border:1px solid rgba(184,134,59,.22);

    border-radius:18px;

    box-shadow:

        0 30px 80px rgba(0,0,0,.40);

}

.card-title{

    font-family:'IBM Plex Mono',monospace;

    letter-spacing:.30em;

    font-size:11px;

    margin-bottom:28px;

    color:var(--savanna-gold);

}

.expedition-card ul{

margin:0;

padding:0;

list-style:none;

}

.expedition-card li{

    display:flex;

    align-items:center;

    gap:14px;

    padding:15px 0;

    font-size:15px;

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

    border-bottom:1px solid rgba(255,255,255,.08);

}
.expedition-card li span{

    color:var(--savanna-gold);

    font-size:10px;

}

.expedition-card li:last-child{

border-bottom:none;

}

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

@media(max-width:1100px){

.hero-content-container{

flex-direction:column;

align-items:flex-start;

}

.hero-right{

width:100%;

}

.expedition-card{

width:100%;

}

}

.logbook-hero-section{

    animation:heroReveal 1.2s ease;

}

@keyframes heroReveal{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:none;

    }

}