@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;
    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 */
.hero{
    position: relative;
    height: 75vh;
    overflow:hidden;
    display: flex;
    flex-direction:column;
    justify-content:space-between;
}
.hero-bg{
    position: absolute;
    inset: 0;
    background-image: url("whatwedo.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(4px);
    transform: scale(1.08);
    z-index:0;
}
.hero-inner{
    position: relative;
    z-index:2;
    padding:60px 60px 0;
    flex:1;
    display:flex;
    flex-direction: column;
    justify-content: center;
}
.hero-title{
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20vh;
    line-height: .88;
    color: orange;
    letter-spacing:2px;
    text-shadow: 6px 6px 0 rgba(0,0,0,0.3);
    margin-bottom: 40px;
}

.hero-mission-card{
    backdrop-filter: blur(8px);
    border: 3px solid orange;
    border-radius: 20px;
    padding: 32px 40px;
    max-width: 550px;
    text-align: center;

    position: absolute;
    bottom:50px;
    left:60px;
    z-index:2;
}
.hero-animal{
    margin-bottom:-100px;
    align-self:flex-end;
    transform: translateY(-200px);
    img{
        align-items: flex-end;
        height:600px;
        filter: drop-shadow(25px -10px 0 orange) drop-shadow(-25px 0px 0 orange);
    }
}
.hmc-tag{
    display:inline-block;
    background: orange;
    color: wheat;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 35px; letter-spacing: 3px;
    padding: 5px 18px; border-radius: 50px;
    margin-bottom: 16px;
}
.hmc-text{
    font-family: 'Instrument Sans', sans-serif;
    font-size: 30px; line-height: 1.6;
    color: orange;
    font-weight: 600;
}

/* mission */
.mission{
    background: wheat;
    padding:90px 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cellipse cx='30' cy='25' rx='8' ry='10' fill='%23F5A623' opacity='0.25'/%3E%3Cellipse cx='55' cy='20' rx='7' ry='9' fill='%23F5A623' opacity='0.25'/%3E%3Cellipse cx='75' cy='30' rx='6' ry='8' fill='%23F5A623' opacity='0.25'/%3E%3Cellipse cx='15' cy='35' rx='6' ry='8' fill='%23F5A623' opacity='0.25'/%3E%3Cellipse cx='45' cy='62' rx='18' ry='15' fill='%23F5A623' opacity='0.25' transform='rotate(-15 45 62)'/%3E%3C/svg%3E");
    background-size: 140px 140px; 
}

.mission-title{
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: .95;
    color: #ad4200;
    margin-bottom: 32px;
}
.mission-body{
    font-size: 17px;
    line-height: 1.85;
    color: sienna;
    font-family: sans-serif;
    p{
        margin-bottom: 18px;
    }
    p:last child{
        margin-bottom:0;
    }
}
/* projects */
.projects{
    background: #ad4200;
    padding: 90px 60px;
    position: relative;
    overflow: hidden;
}
.projects::before{
    content:'';
    position: absolute;
    inset:0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}
.projects-inner{
    position: relative;
    z-index:1;
}
.project-cards{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:20px;
}
.projects-title{
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 4.5vw, 64px);
    color: orange;
    line-height: .92;
    margin-bottom: 20px;
}
.projects-body{
    color: wheat;
    font-family: sans-serif;
    margin-bottom: 20px;
}
.project-card{
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(245, 166,35,0.2);
    border-radius:20px;
    padding:44px 36px;
    transition: background .25s, border-color .25s, transform .25s;
    position: relative; 
    overflow: hidden;
    margin: 10px;
}
.project-card:hover{
    background: rgba(245,166,35,0.1);
    border-color: orange;
    transform: translateY(-4px);
}
.project-card::before{
    content: attr(data-num);
    position: absolute;
    top: -16px;
    right: 16px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 140px;
    color: rgba(0,0,0,0.12);
    line-height:1;
    letter-spacing:-3px;
}
.project-title{
    font-family: "Bebas Neue", sans-serif;
    font-size: 34px; 
    color: orange;
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.project-body{
    font-size:14px;
    line-height: 1.8;
    color: rgba(255,245,228,0.65);
    margin-bottom:28px;
    position: relative;
    z-index:1;
}

/* 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; margin: 0 auto; }
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-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{ height: auto; min-height: 70vh; }
    .hero-inner{ padding: 40px 24px 0; }
    .hero-title{ font-size: clamp(48px, 14vw, 120px); margin-bottom: 24px; }
    .hero-mission-card{
        position: static;
        margin: 24px;
        max-width: none;
    }
    .hmc-tag{ font-size: 28px; }
    .hmc-text{ font-size: 18px; }
    .hero-animal{
        transform: translateY(-60px);
        margin-bottom: -60px;
    }
    .hero-animal img{ height: 280px; max-width: 100%; object-fit: contain; }
    .mission{ padding: 48px 24px; }
    .mission-title{ font-size: clamp(32px, 7vw, 48px); }
    .projects{ padding: 48px 24px; }
    .project-cards{ grid-template-columns: 1fr; }
    .project-card{ margin: 0; }
    footer{ flex-direction: column; gap: 12px; padding: 20px 24px; text-align: center; }
}
@media (max-width: 480px){
    .logo-text{ font-size: 20px; }
    .hero-title{ font-size: clamp(36px, 12vw, 56px); }
    .hero-animal img{ height: 220px; }
    .project-title{ font-size: 26px; }
}