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

:root {
    --primary-color: #2563eb;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --border-light: #f1f5f9;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    --footer-color: var(--gradient-primary);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Typography Scale */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-4xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: var(--spacing-3xl);
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: var(--spacing-lg) 0;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-logo i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-2xl);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: var(--border-light);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: var(--radius-full);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    color: white;
    position: relative;
    overflow: hidden;
    padding: var(--spacing-4xl) 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-xl);
    line-height: 1.1;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-icons {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.floating-icons i {
    position: absolute;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.floating-icons i:nth-child(1) {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
    color: rgba(255, 255, 255, 0.9);
}

.floating-icons i:nth-child(2) {
    top: 15%;
    right: 15%;
    animation-delay: 1.5s;
    color: rgba(255, 255, 255, 0.7);
}

.floating-icons i:nth-child(3) {
    bottom: 15%;
    left: 15%;
    animation-delay: 3s;
    color: rgba(255, 255, 255, 0.8);
}

.floating-icons i:nth-child(4) {
    bottom: 15%;
    right: 15%;
    animation-delay: 4.5s;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
    }
}

/* Scholars Page Hero */
.scholars-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.scholars-hero .floating-icons i {
    color: rgba(255, 255, 255, 0.9);
}

/* Join Requirements */
.join-requirements {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin: var(--spacing-2xl) 0;
    border: 1px solid var(--border-light);
}

.join-requirements h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    font-size: 1.25rem;
    font-weight: 600;
}

.join-requirements ul {
    list-style: none;
    padding: 0;
}

.join-requirements li {
    padding: var(--spacing-sm) 0;
    color: var(--text-light);
    position: relative;
    padding-left: var(--spacing-xl);
}

.join-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-height: 48px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: #d97706;
    border-color: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
    backdrop-filter: blur(10px);
}

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

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* About Section */
.about {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-light);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4xl);
}

.about-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: start;
}

.about-column h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-size: 1.75rem;
    font-weight: 700;
}

.about-column p {
    margin-bottom: var(--spacing-xl);
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
}

.about-initiatives h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xl);
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
}

.initiative-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.initiative-card {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.initiative-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    display: block;
}

.initiative-card h4 {
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
}

.initiative-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

/* Events Section */
.events {
    padding: var(--spacing-4xl) 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-2xl);
    align-items: stretch;
}

.event-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card.featured {
    grid-column: span 2;
    display: flex;
    flex-direction: row;
    min-height: 300px;
}

.event-card.featured .event-image {
    flex: 1;
    min-height: 300px;
}

.event-card.featured .event-content {
    flex: 1;
}

.event-image {
    background: var(--gradient-primary);
    /* padding: var(--spacing-3xl); */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.event-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

.event-image img {
    /* center & responsive: resize when larger than container */
    display: block;
    margin: 0 auto;
    align-self: center;
    justify-self: center;
    max-width: 480px;
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
}

.event-content {
    padding: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.event-date {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-content h3 {
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.event-content p {
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

/* Get Involved Section */
.get-involved {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-light);
}

.involvement-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-3xl);
    gap: var(--spacing-sm);
    background: white;
    padding: 8px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid transparent;
    background: transparent;
    color: var(--text-dark);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    white-space: nowrap;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.involvement-content h3 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--text-dark);
    font-size: 2.25rem;
    font-weight: 700;
}

.involvement-content p {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.benefits,
.participation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
    align-items: stretch;
}

.benefit,
.option {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.benefit i,
.option i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: var(--spacing-lg);
    display: block;
}

.benefit h4,
.option h4 {
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
}

.benefit p,
.option p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

.coming-soon-pill {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: white;
    color: var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-color);
    background: linear-gradient(white, white), var(--gradient-primary);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    z-index: 10;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Gallery Section */
.gallery {
    padding: var(--spacing-4xl) 0;
}

.gallery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: start;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.testimonial {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.quote {
    margin-bottom: var(--spacing-lg);
}

.quote i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    display: block;
}

.quote p {
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
}

.author {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.photo-item {
    background: var(--gradient-accent);
    border-radius: var(--radius-xl);
    text-align: center;
    color: white;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.photo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
}

.photo-item p {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    z-index: 3;
    margin: var(--spacing-md);
    background: rgba(0,0,0,0.7);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
}

/* Resources Section */
.resources {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-light);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-2xl);
    align-items: stretch;
}

.resource-card {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.resource-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    display: block;
}

.resource-card h3 {
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

/* Contact Section */
.contact {
    padding: var(--spacing-4xl) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: start;
}

.contact-info h3 {
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 700;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
    font-size: 1.125rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contact-details .btn {
    min-width: 100%;
    align-self: center;
    margin-top: var(--spacing-sm);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-item span {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
}

.contact-form {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.contact-image {
    width: 100%;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.form-group {
    margin-bottom: var(--spacing-xl);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--footer-color);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.footer-logo i {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.footer-section h4 {
    margin-bottom: var(--spacing-lg);
    color: var(--secondary-color);
    font-size: 1.25rem;
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: var(--spacing-lg);
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Footer Logo Placeholders */
.footer-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-lg);
    /* background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 2px dashed rgba(255, 255, 255, 0.2); */
    transition: all 0.3s ease;
    width: 100%;
}

.logo-placeholder i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.logo-placeholder span {
    color: #d1d5db;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
}

.footer-brand p {
    max-width: 400px;
}

/* Responsive Footer */
@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .footer-logo-section {
        justify-content: stretch;
    }

    .partner-logo,
    .rose-logo {
        max-width: 150px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: var(--spacing-xl);
    }
    
    .floating-icons {
        width: 300px;
        height: 300px;
    }
    
    .floating-icons i {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: var(--spacing-sm);
    }

    .nav-link {
        padding: var(--spacing-sm) var(--spacing-sm);
        font-size: 0.9rem;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .nav-link {
        background: none !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-2xl) 0;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding: var(--spacing-3xl) 0;
        min-height: 90vh;
        overflow: visible;
    }
    
    .hero .container {
        gap: var(--spacing-2xl);
    }
    
    .hero-visual {
        margin-bottom: var(--spacing-lg);
    }
    
    .floating-icons {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .floating-icons i {
        font-size: 2.5rem;
        position: absolute;
        z-index: 1;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: var(--spacing-xl);
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    .about-top-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .initiative-cards {
        grid-template-columns: 1fr;
    }
    
    .gallery-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .event-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .involvement-tabs {
        max-width: 100%;
        padding: 5px;
        gap: 4px;
    }

    .tab-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits,
    .participation-options {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero {
        padding: var(--spacing-2xl) 0;
        min-height: 85vh;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .floating-icons {
        width: 200px;
        height: 200px;
        margin: 0 auto var(--spacing-md);
    }
    
    .floating-icons i {
        font-size: 2rem;
    }
    
    .initiative-card,
    .benefit,
    .option,
    .resource-card,
    .event-card {
        padding: var(--spacing-lg);
    }
    
    .contact-item {
        padding: var(--spacing-md);
    }

    .involvement-tabs {
        padding: 4px;
        gap: 3px;
    }

    .tab-btn {
        padding: 6px 8px;
        font-size: 0.7rem;
    }
}

.partner-logo {
    width: 100%;
}

.rose-logo {
    width: 80%;
}

.banner {
    padding: var(--spacing-xl);
}

.banner-image {
    border-radius: var(--radius-lg);
    width: 100%;
    transition: all 0.3s ease;
}

.link, .link:visited {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
}
.link:hover {
    text-decoration: underline;
    text-decoration-style: wavy;
}