@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
--saffron:#ff9933;
--blue:#1e3c72;
--green:#2e7d32;
--brown:#6d4c41;
--white:#ffffff;
}

/* =========================
GLOBAL
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#f5f5f5;
color:#333;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* =========================
TOP BAR
========================= */

.top-bar{
background:var(--saffron);
color:white;
font-size:14px;
padding:10px 0;
}

.top-bar-content{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:15px;
}

/* LEFT DATE TIME */

.top-left{
display:flex;
align-items:center;
gap:10px;
color:white;
font-weight:500;
}

.top-left i{
font-size:16px;
color:white;
}

#datetime{
color:white;
font-size:14px;
font-weight:500;
}

/* CENTER CONTACT */

.top-center{
display:flex;
align-items:center;
gap:10px;
color:white;
font-weight:500;
}

/* RIGHT SOCIAL */

.top-right{
display:flex;
align-items:center;
gap:10px;
}

.top-right a{
color:white;
width:32px;
height:32px;
border-radius:50%;
background:rgba(255,255,255,.2);
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
transition:.3s;
}

.top-right a:hover{
background:white;
color:var(--saffron);
transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:768px){

.top-bar-content{
    flex-direction:column;
    text-align:center;
}


}


/* =========================
HEADER
========================= */

.header{
position:sticky;
top:0;
width:100%;
background:rgba(255,255,255,.97);
backdrop-filter:blur(10px);
z-index:999;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo-area{
display:flex;
align-items:center;
gap:15px;
text-decoration:none;
color:#000;
}

.logo-area img{
width:70px;
}

.logo-area h2{
font-size:24px;
color:var(--blue);
margin-bottom:3px;
}

.logo-area p{
color:#666;
font-size:14px;
}

.navbar{
display:flex;
align-items:center;
gap:25px;
}

.navbar a{
text-decoration:none;
color:#333;
font-weight:500;
transition:.3s;
position:relative;
}

.navbar a:hover{
color:var(--saffron);
}

.navbar a::after{
content:'';
position:absolute;
left:0;
bottom:-5px;
width:0;
height:2px;
background:var(--saffron);
transition:.3s;
}

.navbar a:hover::after{
width:100%;
}

.donate-btn{
background:var(--green);
color:white !important;
padding:12px 22px;
border-radius:30px;
transition:.3s;
}

.donate-btn:hover{
background:var(--saffron);
color:white !important;
}

.menu-toggle{
display:none;
font-size:30px;
cursor:pointer;
}

/* =========================
HERO SECTION
========================= */

.hero{

min-height:100vh;

width:100%;

background:
linear-gradient(
    rgba(30,60,114,0.65),
    rgba(0,0,0,0.55)
),
url('../images/ksn-ttc-26.png');

background-size:cover;

background-position:center center;

background-repeat:no-repeat;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

padding:120px 20px;

color:white;

}

/* CONTENT */

.hero-content{

max-width:900px;

width:100%;

}

.hero-content img{

margin:auto;

margin-bottom:25px;

}

.hero-content h2{

font-size:55px;

line-height:1.3;

margin-bottom:25px;

text-shadow:
0 3px 10px rgba(0,0,0,.4);

}

.hero-content p{

font-size:18px;

line-height:1.8;

max-width:750px;

margin:auto;

text-shadow:
0 2px 8px rgba(0,0,0,.4);

}

/* MOBILE FIX */

@media(max-width:768px){

.hero{

    min-height:90vh;

    padding:140px 20px 80px;

    background-position:center;

    background-size:cover;

}

.hero-content h2{

    font-size:34px;

}

.hero-content p{

    font-size:16px;

}

.hero-content img{

    width:160px;

}

}



.hero-btns{
margin-top:30px;
}

.btn{
display:inline-block;
padding:14px 30px;
border-radius:40px;
text-decoration:none;
margin:10px;
transition:.4s;
font-weight:600;
}

.saffron{
background:var(--saffron);
color:white;
}

.green{
background:var(--green);
color:white;
}

.btn:hover{
transform:translateY(-5px);
box-shadow:0 10px 20px rgba(0,0,0,.2);
}

/* =========================
SECTIONS
========================= */

.section{
padding:100px 0;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:42px;
color:var(--blue);
margin-bottom:10px;
}

.section-title p{
color:#666;
max-width:700px;
margin:auto;
}

/* =========================
CARDS
========================= */

.card-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:white;
padding:35px;
border-radius:20px;
transition:.4s;
box-shadow:0 5px 20px rgba(0,0,0,.08);
text-align:center;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 15px 30px rgba(0,0,0,.12);
}

.card i{
font-size:55px;
color:var(--saffron);
margin-bottom:20px;
}

.card h3{
margin-bottom:15px;
color:var(--blue);
}

.card p{
line-height:1.7;
color:#666;
}

/* =========================
FOOTER
========================= */

.footer{
background:var(--blue);
color:white;
padding:70px 0 20px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}

.footer h3{
margin-bottom:20px;
}

.footer a{
color:white;
display:block;
margin:10px 0;
text-decoration:none;
transition:.3s;
}

.footer a:hover{
color:var(--saffron);
}

.footer-logo{
width:90px;
margin-bottom:15px;
}

.socials{
display:flex;
gap:15px;
margin-top:20px;
}

.socials a{
width:42px;
height:42px;
border-radius:50%;
background:rgba(255,255,255,.15);
display:flex;
align-items:center;
justify-content:center;
transition:.3s;
}

.socials a:hover{
background:var(--saffron);
transform:translateY(-5px);
}

.copyright{
text-align:center;
margin-top:50px;
border-top:1px solid rgba(255,255,255,.2);
padding-top:20px;
font-size:14px;
}

/* =========================
WHATSAPP BUTTON
========================= */

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:30px;
text-decoration:none;
z-index:999;
box-shadow:0 10px 20px rgba(0,0,0,.2);
}

/* =========================
MOBILE RESPONSIVE
========================= */

@media(max-width:900px){


.top-bar-content{
    justify-content:center;
    text-align:center;
}

.nav-container{
    position:relative;
}

.navbar{
    position:absolute;
    top:100%;
    right:-100%;
    width:280px;
    background:white;
    flex-direction:column;
    align-items:flex-start;
    padding:30px;
    box-shadow:0 10px 20px rgba(0,0,0,.1);
    transition:.4s;
    border-radius:0 0 0 20px;
}

.navbar.active{
    right:0;
}

.menu-toggle{
    display:block;
}

.hero-content h1{
    font-size:36px;
}

.hero-content p{
    font-size:16px;
}

.logo-area h2{
    font-size:18px;
}

.section-title h2{
    font-size:32px;
}


}

@media(max-width:600px){


.top-left,
.top-center,
.top-right{
    width:100%;
    justify-content:center;
}

.hero{
    padding-top:180px;
}

.hero-content h1{
    font-size:30px;
}

.btn{
    width:100%;
    max-width:280px;
}


}
