/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

h4 {
    font-size: 1.4rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Color Variables */
:root {
    --primary-color: #8B5A8C;
    --secondary-color: #F4A6A6;
    --accent-color: #FFB6C1;
    --text-dark: #2C2C2C;
    --text-light: #666;
    --bg-light: #F8F9FA;
    --bg-accent: #FFF5F5;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #8B5A8C 0%, #F4A6A6 100%);
    --gradient-secondary: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 100%);
    --shadow-light: 0 4px 20px rgba(139, 90, 140, 0.1);
    --shadow-medium: 0 8px 30px rgba(139, 90, 140, 0.15);
    --shadow-heavy: 0 15px 40px rgba(139, 90, 140, 0.2);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(139, 90, 140, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Get Involved dropdown */
.nav-item-has-dropdown {
    position: relative;
}

.nav-dropdown-arrow {
    font-size: 0.65rem;
    margin-left: 0.25rem;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.nav-item-has-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    min-width: 200px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(139, 90, 140, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 100;
}

.nav-item-has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(4px);
}

.nav-dropdown li {
    margin: 0;
}

.nav-dropdown .nav-link {
    display: block;
    padding: 0.6rem 1.25rem;
    white-space: nowrap;
}

.nav-dropdown .nav-link::after {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FFF5F5 0%, #F8F9FA 100%);
    padding-top: 70px;
    scroll-margin-top: 70px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-text {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    max-height: 420px;
    width: auto;
    object-fit: contain;
    border-radius: 20px;
    animation: floatIn 3s ease-out;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(-250px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--gradient-secondary);
    color: var(--text-dark);
    box-shadow: var(--shadow-light);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Sections */
.section {
    padding: 5rem 0;
    scroll-margin-top: 70px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-accent {
    background-color: var(--bg-accent);
}

/* About Section */
.about-content {
    margin-top: 3rem;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.founders-story {
    overflow: hidden;
}

.founders-story .founder-photo-inline {
    float: left;
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0.2rem 1.25rem 0.75rem 0;
    box-shadow: var(--shadow-light);
}

.team-section-below-founder {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 90, 140, 0.12);
}

.team-section-below-founder > h3 {
    margin-top: 0;
    text-align: center;
    color: var(--primary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Meet Our Team: 3×2 layout (must follow .team-grid — same element has both classes) */
.team-grid.meet-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
    align-items: stretch;
}

.team-grid.meet-team-grid .team-member {
    min-height: 100%;
}

@media (max-width: 900px) {
    .team-grid.meet-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .team-grid.meet-team-grid {
        grid-template-columns: 1fr;
    }
}

.team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    overflow: hidden;
    position: relative;
}

.member-photo i {
    font-size: 3rem;
    color: white;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.member-photo img.photo-top-align {
    object-position: top center;
}

.member-photo img.photo-adjust {
    object-position: 70% 20%;
}

.member-photo:has(img) {
    background: transparent;
}

.member-photo:has(img) i {
    display: none;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-quote {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.service-category {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.service-category h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.service-category-subline {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.82em;
    font-weight: 500;
    line-height: 1.3;
}

.service-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--bg-light);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    background: var(--bg-accent);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.service-cta {
    text-align: center;
}

/* Sponsors intro copy */
.sponsors-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Sponsors thank you & logo placeholders */
.sponsors-thank-you {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.sponsor-logos {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 4vw, 3rem);
    margin-bottom: 3rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0.75rem;
    box-sizing: border-box;
}

.sponsor-logo-slot {
    flex: 0 1 160px;
    min-width: 0;
    width: 100%;
    max-width: 160px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo-slot:empty {
    background: var(--bg-accent);
    border: 2px dashed rgba(139, 90, 140, 0.3);
    border-radius: 12px;
}

/* Replace .sponsor-logo-slot with img or add img inside for real logos */
.sponsor-logo-slot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
    border-radius: 10px;
}

/* Sponsorship Tiers */
.sponsorship-tiers-heading {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.sponsorship-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.sponsorship-tier {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.sponsorship-tier:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.sponsorship-tier h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.sponsorship-tier .tier-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.sponsors-cta {
    text-align: center;
}

.sponsors-cta .btn {
    min-height: 50px;
    padding: 12px 28px;
    font-size: 1.1rem;
}

/* Get Involved Section */
.involve-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.involve-card-full {
    grid-column: 1 / -1;
}

.involve-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease;
}

.involve-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.involve-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.involve-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.involve-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Donate Section */
.donate-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-top: 3rem;
}

.donate-info {
    background: white;
    padding: 2rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    width: 100%;
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.donate-info h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.donate-info .donate-funds-heading {
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.donate-info ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 28rem;
    text-align: left;
}

.donate-info ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.donate-info ul li .fa-check-circle {
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.donate-info .donate-info-closing {
    margin-top: 2rem;
    font-style: italic;
    text-align: center;
}

.impact-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.impact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
}

.impact-item .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.impact-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.donate-form {
    background: white;
    padding: 2rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    width: 100%;
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.donate-form h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.donate-form-inner {
    text-align: center;
    padding: 0 1.25rem;
}

.donate-form-intro {
    font-size: 1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto 0.75rem;
    line-height: 1.4;
}

.donate-form a[href*="clover.com"] {
    transition: all 0.3s ease;
}

.donate-form a[href*="clover.com"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 90, 140, 0.3) !important;
    background-color: #7a4a7a !important;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* News & Events */
.news-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.event-list {
    margin-top: 2rem;
}

.event-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.event-item:hover {
    transform: translateY(-3px);
}

.event-date {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
    height: fit-content;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.event-details h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.event-details p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.event-time {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.blog-posts {
    margin-top: 2rem;
}

.blog-post {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-3px);
}

.blog-post h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.blog-post p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

/* News & Events - Events section */
.events-section {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.events-section h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.events-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.events-cards-row .event-card-featured {
    flex: 1 1 280px;
    max-width: 560px;
    margin: 0;
}

.event-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    max-width: 480px;
}

.event-card-featured {
    max-width: 560px;
    width: 100%;
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(139, 90, 140, 0.12);
    flex-direction: column;
    text-align: center;
}

.event-card-featured .event-venue-logo {
    margin-bottom: 0.5rem;
}

.event-venue-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.event-card-featured .event-venue-logo {
    width: 96px;
    height: 96px;
}

.event-details-inline {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.event-card-featured .event-details-inline {
    gap: 0.5rem;
    align-items: center;
}

.event-card-featured .event-cta {
    align-self: center;
}

.event-title {
    margin: 0 0 0.15em;
    font-size: 1.35rem;
    color: var(--primary-color);
}

.event-schedule {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
}

.event-date-time {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.event-class-info {
    margin: 0;
    font-size: 1rem;
    color: var(--text-light);
}

.event-cta {
    margin-top: 1rem;
    align-self: flex-start;
}

.event-cta:hover {
    color: white;
}

.event-schedule + .event-date-time {
    margin-top: 0.15rem;
}

.newsletter-signup {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
}

.newsletter-signup h3 {
    margin-bottom: 1rem;
}

.newsletter-signup p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 24px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

/* Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.resource-category {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    width: 100%;
    box-sizing: border-box;
}

.resource-category h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E5E5E5;
    width: 100%;
    box-sizing: border-box;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-light);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    width: 100%;
    box-sizing: border-box;
}

.crisis-item {
    background: var(--bg-accent);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    text-align: center;
}

.crisis-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.crisis-item .phone {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Shop Section */
.shop-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.shop-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.product-categories {
    margin-top: 3rem;
}

.product-category {
    margin-bottom: 3rem;
}

.product-category h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.product-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.product-image i {
    font-size: 2rem;
    color: white;
}

.product-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.shop-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Contact Section */
.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 50px;
    text-align: center;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    max-width: 600px;
    width: 100%;
}

.contact-form-container h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    width: 100%;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-light);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-item-has-dropdown .nav-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        padding: 0 0 0 1rem;
        min-width: 0;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--primary-color);
        background: transparent;
    }
    
    .nav-item-has-dropdown:hover .nav-dropdown-arrow {
        transform: none;
    }
    
    .nav-dropdown .nav-link {
        padding: 0.4rem 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .founders-story .founder-photo-inline {
        float: none;
        display: block;
        margin: 0 auto 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-items {
        grid-template-columns: 1fr;
    }
    
    .sponsorship-tiers {
        grid-template-columns: 1fr;
    }
    
    .sponsor-logos {
        gap: 0.75rem;
        padding: 0 0.5rem;
    }

    .sponsor-logo-slot {
        flex-basis: 100px;
        max-width: 100px;
    }
    
    .donate-content {
        gap: 2rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .news-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .involve-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .hero-logo {
        max-height: 300px;
    }
    
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
    
    .footer-logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .service-category,
    .donate-form,
    .contact-form-container {
        padding: 2rem;
    }
    
    .hero-logo {
        max-height: 250px;
    }
    
    .logo-img {
        height: 35px;
        max-width: 120px;
    }
    
    .footer-logo {
        max-width: 120px;
    }

    .sponsor-logos {
        gap: 0.5rem;
        padding: 0 0.25rem;
    }

    .sponsor-logo-slot {
        flex-basis: 88px;
        max-width: 88px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000;
        --text-dark: #000;
        --text-light: #333;
    }
}
