@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&family=Playfair+Display:wght@400;700&display=swap');

:root {
--primary-color: #ff8bd2;
--secondary-color: #fef18b;
--light-bg: #fffcf2;
--white-color: #FFFFFF;
--text-color: #5b4c54;
--heading-font: 'Playfair Display', serif;
--body-font: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
font-family: var(--body-font);
margin: 0;
padding: 0;
background-color: var(--light-bg);
color: var(--text-color);
line-height: 1.8;
display: flex;
flex-direction: column;
min-height: 100vh;
}

main { flex-grow: 1; }

.container {
width: 90%;
max-width: 1100px;
margin: 0 auto;
}

h1, h2, h3, h4 {
font-family: var(--heading-font);
color: var(--primary-color);
margin-top: 0;
font-weight: 700;
}

h2 {
font-size: 3.5rem;
text-align: center;
margin-bottom: 25px;
position: relative;
}

p { margin-bottom: 1.2rem; }

.section-intro {
text-align: center;
font-size: 1.1rem;
max-width: 700px;
margin: 0 auto 40px auto;
}

nav {
background-color: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
border-bottom: 1px solid #eee;
padding: 10px 5%;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
z-index: 1000;
}
.nav-logo {
display: flex;
align-items: center;
text-decoration: none;
color: var(--primary-color);
font-family: var(--heading-font);
font-size: 1.5rem;
font-weight: 700;
}
.nav-logo img {
height: 50px;
margin-right: 15px;
transition: transform 0.4s ease;
}
.nav-logo:hover img {
transform: scale(1.1) rotate(-10deg);
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
nav ul li a {
padding: 20px 15px;
text-decoration: none;
color: var(--text-color);
font-weight: 500;
position: relative;
transition: color 0.3s;
white-space: nowrap;
}
nav ul li a::after {
content: '';
position: absolute;
width: 0;
height: 3px;
background: var(--secondary-color);
border-radius: 2px;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
transition: width 0.3s ease-out;
}
nav ul li a:hover,
nav ul li a.active {
color: var(--primary-color);
}
nav ul li a:hover::after,
nav ul li a.active::after {
width: 60%;
}

.hero {
height: 85vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
    color: var(--text-color);
position: relative;
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/team.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
}
.hero-content {
position: relative;
z-index: 2;
padding: 0 20px;
}
.hero h1 {
font-size: 5rem;
margin-bottom: 1rem;
    color: var(--primary-color);
    color: var(--white-color);
line-height: 1.2;
}
.hero p {
font-size: 1.3rem;
font-weight: 400;
max-width: 600px;
margin-bottom: 2.5rem;
margin-left: auto;
margin-right: auto;
}

.btn {
text-decoration: none;
padding: 12px 30px;
border-radius: 50px;
font-weight: 700;
display: inline-block;
transition: all 0.3s ease;
border: 2px solid transparent;
cursor: pointer;
}
.btn-primary {
background-color: var(--primary-color);
color: var(--white-color);
}
.btn-primary:hover {
background-color: var(--secondary-color);
color: var(--text-color);
transform: translateY(-3px) scale(1.05);
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-secondary {
background-color: transparent;
color: var(--primary-color);
border: 2px solid var(--primary-color);
margin-left: 15px;
}
.btn-secondary:hover {
background-color: var(--primary-color);
color: var(--white-color);
transform: translateY(-3px);
}

.page-section {
padding: 80px 0;
}
.alt-bg {
background-color: var(--white-color);
}

.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin-top: 40px;
}
.info-card {
background: var(--white-color);
border: 1px solid #eee;
padding: 30px;
border-radius: 15px;
text-align: center;
text-decoration: none;
color: var(--text-color);
transition: transform 0.3s, box-shadow 0.3s;
}
.info-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 25px rgba(255, 139, 210, 0.2);
}
.info-card h3 {
font-size: 1.8rem;
margin-bottom: 10px;
color: var(--primary-color);
}

.founder-note {
background: var(--white-color);
border-left: 5px solid var(--secondary-color);
padding: 40px;
border-radius: 0 10px 10px 0;
max-width: 800px;
margin: 20px auto;
}
.founder-note h3 {
font-size: 2.5rem;
margin-bottom: 15px;
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
}
.team-member {
text-align: center;
background: var(--white-color);
padding: 30px;
border-radius: 15px;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.member-info h3 { font-size: 1.5rem; margin-bottom: 5px; }
.member-info h4 {
font-family: var(--body-font);
font-size: 1rem;
font-weight: 500;
color: var(--text-color);
margin-top: 0;
}

.mission-item {
background: var(--white-color);
border: 2px dashed var(--primary-color);
padding: 30px;
border-radius: 15px;
text-align: center;
margin-bottom: 30px;
}
.mission-item h3 { font-size: 2rem; }
.donation-methods {
text-align: center;
background: var(--light-bg);
padding: 40px;
border-radius: 15px;
margin-top: 60px;
border: 1px solid #eee;
}
.donation-methods h3 { font-size: 2.5rem; }
.venmo-info { font-weight: 700; margin-top: 20px; font-size: 1.2rem; }

.form-container {
max-width: 800px;
margin: 40px auto 0;
background: var(--white-color);
padding: 15px;
border-radius: 15px;
box-shadow: 0 8px 25px rgba(255, 139, 210, 0.2);
overflow: hidden;
}
.form-container iframe {
width: 100%;
height: 850px;
border: none;
}

footer {
background: var(--primary-color);
color: var(--white-color);
text-align: center;
padding: 25px 0;
margin-top: auto;
}
footer p {
margin: 0;
font-size: 0.9rem;
font-weight: 500;
}

.fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.is-visible {
opacity: 1;
transform: translateY(0);
}

@media (max-width: 768px) {
nav {
flex-direction: column;
padding-top: 15px;
padding-bottom: 15px;
}
.nav-logo { margin-bottom: 15px; }
nav ul {
justify-content: center;
width: 100%;
}
nav ul li a {
padding: 8px 9px;
font-size: 0.9rem;
}

.page-section { padding: 60px 0; }
h2 { font-size: 2.8rem; }
.hero h1 { font-size: 3.5rem; }
.hero p { font-size: 1.1rem; }
.btn-secondary { margin-left: 0; margin-top: 15px; }

.form-container {
padding: 10px;
}
.form-container iframe {
height: 950px;
}
}

@media (max-width: 480px) {
.hero { height: 80vh; }
.hero-content {
display: flex;
flex-direction: column;
align-items: center;
}
.hero-buttons {
display: flex;
flex-direction: column;
align-items: stretch;
width: 80%;
}
.btn-secondary { margin-left: 0; margin-top: 15px; }

h2 {
font-size: 2.5rem;
line-height: 1.3;
}

.hero h1 {
font-size: 2.8rem;
line-height: 1.2;
}

.team-grid { grid-template-columns: 1fr; }
.form-container { padding: 5px; }
}
