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

body{
font-family:Arial, sans-serif;
background:#fff;
color:#333;
line-height:1.7;
overflow-x:hidden;
}

/* MAIN HEADER */

.main-header{
width:100%;
display:flex;
align-items:center;
justify-content:space-between;
padding:18px 6%;
background:#fff;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 3px 15px rgba(0,0,0,0.08);
}

/* LOGO */

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

.logo-icon{
width:58px;
height:58px;
border-radius:50%;
overflow:hidden;
background:#fff4f8;
border:2px solid #ffd4e5;
box-shadow:0 4px 12px rgba(255,79,147,0.2);
flex-shrink:0;
}

.logo-icon img{
width:100%;
height:100%;
object-fit:cover;
}

.logo-text h2{
font-size:28px;
font-weight:700;
color:#ff4f93;
margin-bottom:2px;
line-height:1;
}

.logo-text span{
font-size:12px;
letter-spacing:2px;
text-transform:uppercase;
color:#777;
}

/* SEARCH */

.search-box{
display:flex;
align-items:center;
background:#fff4f8;
border:1px solid #ffd3e4;
border-radius:40px;
overflow:hidden;
width:320px;
height:52px;
}

.search-box input{
border:none;
outline:none;
background:none;
padding:0 18px;
width:100%;
font-size:15px;
color:#333;
}

.search-box button{
width:58px;
height:52px;
border:none;
background:#ff4f93;
color:#fff;
font-size:16px;
cursor:pointer;
transition:0.3s;
}

.search-box button:hover{
background:#e63b7f;
}

/* NAVIGATION */

#navbar ul{
display:flex;
align-items:center;
gap:30px;
list-style:none;
}

#navbar ul li a{
text-decoration:none;
font-size:16px;
font-weight:600;
color:#333;
position:relative;
transition:0.3s;
}

#navbar ul li a:hover{
color:#ff4f93;
}

#navbar ul li a::after{
content:'';
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:2px;
background:#ff4f93;
transition:0.3s;
}

#navbar ul li a:hover::after{
width:100%;
}

/* DONATE BUTTON */

.donate-btn{
background:#ff4f93;
color:#fff !important;
padding:13px 28px;
border-radius:40px;
box-shadow:0 4px 12px rgba(255,79,147,0.3);
}

.donate-btn:hover{
background:#e63b7f;
transform:translateY(-2px);
}

.donate-btn::after{
display:none;
}

/* MOBILE MENU */

.menu-toggle{
display:none;
font-size:34px;
cursor:pointer;
color:#ff4f93;
}

.mobile-top{
display:none;
}

/* OVERLAY */

#overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
opacity:0;
visibility:hidden;
transition:0.3s;
z-index:998;
}

#overlay.show{
opacity:1;
visibility:visible;
}

/* HERO SECTION */

.hero{
width:100%;
min-height:100vh;
background:
linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
url('images/hero.jpg');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
padding:100px 20px;
text-align:center;
}

.hero-content{
width:100%;
max-width:850px;
background:rgba(255,255,255,0.08);
backdrop-filter:blur(6px);
padding:50px;
border-radius:15px;
}

.hero h1{
font-size:60px;
line-height:1.2;
margin-bottom:25px;
color:#fff;
}

.hero p{
font-size:21px;
color:#f3f3f3;
margin-bottom:35px;
line-height:1.8;
}

/* BUTTON */

.btn{
display:inline-block;
padding:16px 40px;
background:#ff4f93;
color:#fff;
font-size:18px;
font-weight:bold;
text-decoration:none;
border-radius:6px;
transition:0.3s;
}

.btn:hover{
background:#e63d7f;
transform:translateY(-2px);
}

/* SECTION */

.section{
padding:90px 8%;
animation:fadeIn 1s ease;
}

.section h2{
font-size:45px;
text-align:center;
margin-bottom:30px;
color:#ff4f93;
}

.section p{
font-size:18px;
color:#555;
line-height:1.9;
margin-bottom:20px;
}

/* CARDS */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
margin-top:50px;
}

.card{
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.4s;
}

.card:hover{
transform:translateY(-8px);
}

.card img{
width:100%;
height:260px;
object-fit:cover;
}

.card-content{
padding:25px;
}

.card-content h3{
margin-bottom:15px;
font-size:24px;
color:#ff4f93;
}

.card-content p{
font-size:16px;
line-height:1.8;
}

/* GALLERY */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
margin-top:40px;
}

.gallery img{
width:100%;
height:260px;
object-fit:cover;
border-radius:10px;
transition:0.4s;
}

.gallery img:hover{
transform:scale(1.03);
}

/* FORMS */

form{
width:100%;
max-width:650px;
margin:auto;
}

form input,
form textarea,
form select{
width:100%;
padding:16px;
margin-bottom:20px;
border:1px solid #ddd;
border-radius:6px;
font-size:16px;
outline:none;
}

form textarea{
height:180px;
resize:none;
}

form button{
background:#ff4f93;
color:#fff;
border:none;
padding:16px 35px;
font-size:18px;
border-radius:6px;
cursor:pointer;
transition:0.3s;
}

form button:hover{
background:#e63d7f;
}

/* FOOTER */

footer{
background:#111;
color:#fff;
text-align:center;
padding:60px 20px;
margin-top:60px;
}

footer h3{
font-size:30px;
margin-bottom:20px;
color:#ff4f93;
}

footer p{
font-size:16px;
margin-bottom:10px;
color:#ddd;
}

/* ANIMATION */

@keyframes fadeIn{
from{
opacity:0;
transform:translateY(20px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* TABLET */

@media(max-width:1200px){

.search-box{
width:240px;
}

#navbar ul{
gap:20px;
}

}

/* MOBILE */

@media(max-width:991px){

.search-box{
display:none;
}

.menu-toggle{
display:block;
}

#navbar{
position:fixed;
top:0;
right:-100%;
width:320px;
height:100vh;
background:#fff;
z-index:999;
transition:0.4s ease;
padding:30px;
overflow-y:auto;
box-shadow:-5px 0 25px rgba(0,0,0,0.15);
}

#navbar.active{
right:0;
}

.mobile-top{
display:flex;
align-items:center;
justify-content:space-between;
margin-bottom:50px;
}

.mobile-logo{
display:flex;
align-items:center;
gap:12px;
}

.close-menu{
font-size:32px;
cursor:pointer;
color:#ff4f93;
}

#navbar ul{
flex-direction:column;
align-items:flex-start;
gap:30px;
}

#navbar ul li{
width:100%;
}

#navbar ul li a{
font-size:18px;
display:block;
width:100%;
padding-bottom:10px;
border-bottom:1px solid #f1f1f1;
}

.donate-btn{
display:inline-block !important;
text-align:center;
margin-top:10px;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

.section h2{
font-size:36px;
}

.cards{
grid-template-columns:1fr;
}

.gallery{
grid-template-columns:1fr;
}

}

/* SMALL MOBILE */

@media(max-width:768px){

.main-header{
padding:16px 20px;
}

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

.logo-text h2{
font-size:22px;
}

.logo-text span{
font-size:10px;
letter-spacing:1px;
}

#navbar{
width:280px;
}

.hero{
padding-top:140px;
padding-bottom:80px;
min-height:auto;
}

.hero-content{
padding:35px 25px;
}

.hero h1{
font-size:36px;
line-height:1.3;
}

.hero p{
font-size:17px;
line-height:1.7;
}

.section{
padding:70px 20px;
}

.section h2{
font-size:32px;
}

.section p{
font-size:16px;
}

.card img{
height:230px;
}

footer{
padding:50px 20px;
}

}

@media(max-width:480px){

.logo-text span{
display:none;
}

.logo-text h2{
font-size:20px;
}

.menu-toggle{
font-size:30px;
}

.hero h1{
font-size:30px;
}

.hero p{
font-size:16px;
}

.section h2{
font-size:28px;
}

.card-content h3{
font-size:22px;
}

}

/* ABOUT HERO */

.about-hero{
width:100%;
height:70vh;
background:
linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
url('images/about-banner.jpg');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:20px;
}

.about-overlay{
max-width:800px;
}

.about-overlay h1{
font-size:65px;
color:#fff;
margin-bottom:20px;
}

.about-overlay p{
font-size:22px;
color:#f3f3f3;
line-height:1.8;
}

/* ABOUT GRID */

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.reverse-grid{
grid-template-columns:1fr 1fr;
}

.about-image img{
width:100%;
border-radius:15px;
box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

.about-text h2{
margin-bottom:25px;
font-size:42px;
color:#ff4f93;
}

.about-text p{
margin-bottom:20px;
}

/* PINK SECTION */

.pink-section{
background:#fff5f9;
}

/* STATS */

.stats-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:50px;
}

.stat-box{
background:#fff;
padding:40px 20px;
text-align:center;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.stat-box h3{
font-size:50px;
color:#ff4f93;
margin-bottom:10px;
}

.stat-box p{
font-size:18px;
font-weight:600;
}

/* CTA */

.cta-section{
text-align:center;
background:#fff4f8;
}

.cta-section p{
max-width:750px;
margin:auto;
margin-bottom:35px;
}

/* MOBILE */

@media(max-width:991px){

.about-grid{
grid-template-columns:1fr;
}

.reverse-grid{
grid-template-columns:1fr;
}

.about-overlay h1{
font-size:48px;
}

.about-overlay p{
font-size:18px;
}

}

@media(max-width:768px){

.about-hero{
height:60vh;
}

.about-overlay h1{
font-size:38px;
}

.about-text h2{
font-size:32px;
}

}

/* PAGE HEROES */

.bestwish-hero{
background:
linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
url('images/bestwish-banner.jpg');
background-size:cover;
background-position:center;
}

.fax-hero{
background:
linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
url('images/fax-banner.jpg');
background-size:cover;
background-position:center;
}

.gallery-hero{
background:
linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
url('images/gallery-banner.jpg');
background-size:cover;
background-position:center;
}

/* DONATE HERO */

.donate-hero{
background:
linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
url('images/donate-banner.jpg');
background-size:cover;
background-position:center;
}

/* GIFT LIST */

.gift-list{
margin-top:15px;
padding-left:20px;
}

.gift-list li{
margin-bottom:10px;
color:#555;
}