@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);
}

/* main page stylignign */
.page{
    flex:1;
    display: flex;
    align-items:center;
    justify-content:center;
    padding:80px 60px;
    position: relative;
    overflow: hidden;
    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.09'/%3E%3Cellipse cx='55' cy='20' rx='7' ry='9' fill='%23F5A623' opacity='0.09'/%3E%3Cellipse cx='75' cy='30' rx='6' ry='8' fill='%23F5A623' opacity='0.09'/%3E%3Cellipse cx='15' cy='35' rx='6' ry='8' fill='%23F5A623' opacity='0.09'/%3E%3Cellipse cx='45' cy='62' rx='18' ry='15' fill='%23F5A623' opacity='0.09' transform='rotate(-15 45 62)'/%3E%3C/svg%3E");
    background-size: 140px 140px;
}

.donate-card{
    background:white;
    border: 2px solid wheat;
    border-radius: 24px;
    padding: 64px 72px;
    max-width:750px;
    width:100%;
    text-align: center;
    position: relative;
    z-index: 1;
}
.donate-title{
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 7vw, 88px);
    line-height: .9;
    color: #ad4200;
    margin-bottom: 8px;
}
.donate-divider{
    width: 60px;
    height:3px;
    background: orange;
    border-radius: 2px;
    margin: 24px auto;
}
.donate-body{
    font-size: 16px;
    line-height: 1.8;
    color: orange;
    margin-bottom: 40px;
}
.donate-email{
    display: inline-flex; 
    align-items: center;
    gap:12px;
    background: orange;
    border-radius: 50px;
    padding: 14px 28px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    color:#ad4200;
}

/* 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; }
    .page{ padding: 40px 24px; }
    .donate-card{ padding: 40px 28px; }
    .donate-title{ font-size: clamp(36px, 8vw, 56px); }
    .donate-body{ font-size: 15px; }
    .donate-email{ font-size: 16px; padding: 12px 24px; }
    footer{ flex-direction: column; gap: 12px; padding: 20px 24px; text-align: center; }
}
@media (max-width: 480px){
    .logo-text{ font-size: 20px; }
    .page{ padding: 24px 16px; }
    .donate-card{ padding: 28px 20px; }
}