@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

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

html{
    scroll-behavior: smooth;
}

body{
    background: #FFF5E4;
    color: black;
    overflow-x: hidden;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
a{
    text-decoration: none;
}

/* navbar */
nav{
    background: #ad4200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 100;
    margin:0;
}

.logo{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon{
    width: 38px;
    height: 38px;
}

.logo-text{
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: orange;
    letter-spacing: 2px;
    line-height: 1;
    text-decoration: none;
}

.logo-sub{
    font-size:9px;
    letter-spacing: 3px;
    color: #fd6a05;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 2px;
    text-decoration:none;
}

.nav-links{
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a{
    font-family: "Bebas Neue", sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    color: #fd6a05;
    text-decoration: none;
    transition: color .2s;
}

.nav-links a:hover{
    color: orange;
}

.btn-nav{
    background: orange;
    color: black;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
    transition: background .2s, transform .15s;
}

.btn-nav:hover{
    background: #ad4200;
    transform: scale(1.04);
}

/* hero section */
.hero{
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88vh;
}

.hero-grid{
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgb(245, 166,35,0.18) 1px, transparent 1px), linear-gradient(90deg, rgb(245, 166, 35, 0.18) 1px, transparent 1px);
    background-size: 44px 44px;
}

.hero-content{
    position: relative;
    z-index: 2;
    padding: 80px 60px;
    flex: 1;
}

.hero-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(72px, 10vw, 130px);
    line-height: .92;
    color: orange;
}

.hero-title .outline{
    -webkit-text-stroke: 3px orange;
    color: transparent;
}
.hero-desc{
    color: orange;
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.65;
    max-width: 520px;
    font-style: italic;
}
.hero-btns{
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}

.btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 2 4px rgba(0,0,0,.18);
}
.btn-primary{
    background: black;
    color: orange;
}
.btn-secondary{
    background: orange;
    color: black;
}

/* dog pic */
.hero-img{
    position: relative;
    z-index: 2;
    width: 52%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
}

.hero-img img{
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(25px -10px 0 #fd6a05) drop-shadow(-25px 0px 0 orange);
}

/* stats */
.stats{
    background:  #ad4200;
    padding: 40px 60px;
    overflow: hidden;
    position: relative;
}
.paw-path{
    z-index:0;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height:400px;
}
.paw-step{
    flex:1;
    display: flex;
    padding: 0 12px;
}
.paw-step.top{
    align-items:flex-start;
}
.paw-step.bottom {
    align-items:flex-end;
}
.stat-card{
    background: orange;
    border-radius: 16px;
    padding: 20px 28px;
    min-height: 200px;
}
.stat-num{
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    color: #ad4200;
    line-height: 1;
}
.stat-label{
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ad4200;
    margin-top: 4px;
    font-weight: 600;
}
.footsteps{
    z-index: 0;
    position: absolute;
    width: 100%;
    top:0;
    left:0;
}

/* animal testing */
.animaltesting{
    background: #fd6a05;
    padding: 60px;
    background-image: linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
}
.testing::before{
    content: 'LAB';
    position:absolute;
    right: -10px;
    bottom: -20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 280x;
    color: rgba(245, 166,35, 0.04);
    line-height:1;
    pointer-events:none;
    letter-spacing:-4px;
}
.testing-header{
    margin-bottom: 64px;
}
.testing .section-title{
    color: orange;
    margin-bottom: 24px;
}
.testing-desc{
    font-size:17px;
    line-height: 1.75;
    color: rgba(253, 232, 192, 0.65);
}
.facts-scroll-wrapper{
    width: 100%;
    overflow: hidden;
    padding-bottom: 16px;
}
.facts-grid{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    width: max-content;
    padding-right: 20px;
    will-change: transform;
}
.fact-card{
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(245, 166, 35, 0.2);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    transition: border-color .25s, background .25s, transform .25s;
    overflow: hidden;
    min-width: 300px;
    max-width: 300px;
    flex-shrink:0;
}
.fact-card::before{
    content: '';
    position: absolute;
    inset:0;
    background: linear-gradient(135deg, rgba(245,166,35,0.07) 0%, transparent 60%);
    opacity:0;
    transition:opacity .25s;
    border-radius:20px;
}
.fact-card:hover{
    border-color: orange;
    background: rgba(245,166,35,0.07);
    transform: translateY(-4px);
}
.fact-card:hover::before{
    opacity:1;
}
.fact-title{
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing:1px;
    color: orange;
    margin-bottom: 12px;
    line-height:1.1;
}
.fact-body{
    font-size:14px;
    line-height:1.7;
    color:rgba(253,232,192,0.6);
}
.section-title{
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height:1;
    color: black;
}
.section-title span{
    color: #ad4200;
}

/* join our movememnent */
.joinourmovement{
    background-color: black;
}
.join-title{
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(72px, 10vw, 130px);
    color: orange;
    padding-bottom:0px;
    margin-bottom:0px;
}
.join-desc{
    color: orange;
    font-family: sans-serif;
    font-size: 3vh;
    font-weight: bold;
    padding-bottom: 2vh;
}

/* footer */
footer{
    display: flex;
    gap:31.5vw;
    background-color: #ad4200;
    color:wheat;
    font-family: sans-serif;
    padding-top: 10px;
    padding-bottom:10px;
    margin-top: auto;
}
.credit{
    text-decoration: none;
    color:wheat
}

/* responsive */
.nav-toggle{
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    z-index: 101;
}
.nav-toggle span{
    display: block;
    width: 24px;
    height: 2px;
    background: #fd6a05;
    transition: transform .25s, opacity .25s;
}
nav.nav-open .nav-toggle span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
}
nav.nav-open .nav-toggle span:nth-child(2){ opacity: 0; }
nav.nav-open .nav-toggle span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px){
    .nav-toggle{
        display: flex;
    }
    .nav-toggle span{ margin: 0 auto; }
    .nav-links{
        position: fixed;
        top: 0;
        right: 0;
        width: min(280px, 85vw);
        height: 100vh;
        background: #ad4200;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 80px 32px 32px;
        box-shadow: -4px 0 20px rgba(0,0,0,.2);
        transform: translateX(100%);
        transition: transform .3s ease;
    }
    nav.nav-open .nav-links{
        transform: translateX(0);
    }
    .nav-links a{ font-size: 18px; }
}
@media (max-width: 768px){
    nav{ padding: 0 20px; }
    .hero{
        flex-direction: column;
        min-height: auto;
        padding-bottom: 40px;
    }
    .hero-content{ padding: 40px 24px; }
    .hero-title{ font-size: clamp(48px, 12vw, 90px); }
    .hero-desc{ font-size: 15px; }
    .hero-img{
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        justify-content: center;
    }
    .hero-btns{ flex-direction: column; align-items: flex-start; }
    .stats{ padding: 32px 24px; }
    .paw-path{
        flex-direction: column;
        height: auto;
        gap: 24px;
    }
    .paw-step{ padding: 0; }
    .stat-card{ min-height: auto; }
    .stat-num{ font-size: clamp(32px, 8vw, 48px); }
    .stat-label{ font-size: 14px; }
    .footsteps{ display: none; }
    .animaltesting{ padding: 40px 24px; }
    .testing-header{ margin-bottom: 40px; }
    .testing-desc{ font-size: 15px; }
    .join-title{ font-size: clamp(40px, 10vw, 72px); }
    .join-desc{ font-size: clamp(16px, 4vw, 20px); }
    footer{
        flex-direction: column;
        gap: 12px;
        padding: 20px 24px;
        text-align: center;
    }
}
@media (max-width: 480px){
    .logo-text{ font-size: 20px; }
    .hero-content{ padding: 24px 16px; }
    .stat-num{ font-size: 28px; }
    .section-title{ font-size: clamp(32px, 8vw, 42px); }
}