/* ========================================
   CSS Variables & Reset
   ======================================== */
:root {
    --primary-color: #00acc1;
    --primary-dark: #00838f;
    --secondary-color: #4ecdc4;
    --secondary-light: #45b7af;
    --accent-color: #ffe66d;
    --accent-blue: #1A535C;
    --accent-color: #ff9f43;
    --gold-color: #feca57;
    --gold-light: #ff9f43;
    --dark-color: #2d3436;
    --dark-light: #636e72;
    --light-color: #f7f1e3;
    --white: #ffffff;
    --gray-light: #dfe6e9;
    --gray: #b2bec3;
    --text-color: #2d3436;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-heading: 'Fredoka One', cursive;
    --font-body: 'Quicksand', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    border: 2px solid white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

#viewMoreBtn {
    display: block;
    margin: 30px auto;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(102, 126, 234, 0.3);
    padding: 15px 40px;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 40px;
    background: rgba(255, 255, 255, 0.98);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 250px;
}

.logo img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray);
}

.nav-list {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    font-weight: 700;
    color: var(--dark-color);
    transition: var(--transition);
    position: relative;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    transition: var(--transition);
}

.nav-link:hover {
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--dark-color);
    transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #0a1929 0%, #051015 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/frontpage/pagina_primire.png') center/cover;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    animation: fadeInUp 1s ease;
}

.hero-logo-img {
    width: 200px;
    height: auto;
}

.hero-logo-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    color: var(--white);
    padding-left: 5px;
    max-width: 600px;
}

.hero-logo-top {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 5px;
}

.hero-logo-bottom {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    white-space: normal;
}

.hero-logo-divider {
    width: 2px;
    height: 150px;
    background-color: var(--white);
    margin: 0 20px;
}

.hero-logo-extra {
    display: flex;
    flex-direction: column;
    text-align: left;
    color: var(--white);
    justify-content: center;
}

.hero-extra-top {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 2px;
}

.hero-extra-bottom {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.hero-wave .shape-fill {
    fill: var(--light-color); /* Match the background color of the next section */
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.activities .section-title,
.events .section-title {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #4ecdc4);
    margin: 0 auto 20px;
    border-radius: 5px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.activities .section-description,
.events .section-description {
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* ========================================
   About Section
   ======================================== */
.about {
    background: linear-gradient(180deg, #a8edea 0%, #fed6e3 100%);
    padding-top: 50px;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f5f5f5" fill-opacity="1" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,181.3C960,203,1056,213,1152,197.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 2;
}

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

.about-text {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.poem {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #00acc1;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.poem p {
    margin: 8px 0;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
    color: #555;
    text-align: center;
}

.activities-list {
    text-align: center;
    margin-bottom: 25px;
    list-style: none;
    padding: 0;
}

.activities-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #555;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.feature {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--primary-color);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Feature Colors */
.feature-pink {
    border-bottom-color: #00897b;
}
.feature-pink i {
    color: #00897b;
}
.feature-pink:hover {
    background: linear-gradient(180deg, #e0f2f1 0%, #fff 100%);
}

.feature-green {
    border-bottom-color: #4ecdc4;
}
.feature-green i {
    color: #4ecdc4;
}
.feature-green:hover {
    background: linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
}

.feature-blue {
    border-bottom-color: #3498db;
}
.feature-blue i {
    color: #3498db;
}
.feature-blue:hover {
    background: linear-gradient(180deg, #ebf8ff 0%, #fff 100%);
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-family: var(--font-heading);
    font-weight: 700;
}

.feature p {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0;
}

.about-image {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transform: rotate(2deg);
    transition: var(--transition);
}

.about-image:hover img {
    transform: rotate(0deg) scale(1.02);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    z-index: -1;
}

/* ========================================
   Activities Section
   ======================================== */
.activities {
    background: linear-gradient(180deg, #a1c4fd 0%, #c2e9fb 100%);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.activity-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 3px solid transparent;
    display: block;
    text-decoration: none;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.activity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.activity-icon i {
    font-size: 2rem;
    color: var(--white);
}

.activity-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.activity-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Activity Card Colors */
.activity-pink .activity-icon { background: linear-gradient(135deg, #00897b, #00695c); }
.activity-pink:hover { border-color: #00897b; }

.activity-green .activity-icon { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.activity-green:hover { border-color: #2ecc71; }

.activity-orange .activity-icon { background: linear-gradient(135deg, #f39c12, #e67e22); }
.activity-orange:hover { border-color: #f39c12; }

.activity-teal .activity-icon { background: linear-gradient(135deg, #1abc9c, #16a085); }
.activity-teal:hover { border-color: #1abc9c; }

.activity-purple .activity-icon { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
.activity-purple:hover { border-color: #9b59b6; }

.activity-blue .activity-icon { background: linear-gradient(135deg, #3498db, #2980b9); }
.activity-blue:hover { border-color: #3498db; }

.activity-yellow .activity-icon { background: linear-gradient(135deg, #f1c40f, #f39c12); }
.activity-yellow:hover { border-color: #f1c40f; }

/* ========================================
   Events Section
   ======================================== */
.events {
    background: linear-gradient(180deg, #f6d365 0%, #fda085 100%);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    background: var(--light-color);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    transition: var(--transition);
    border: 3px solid transparent;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: white;
}

.event-date {
    background: linear-gradient(135deg, #4ecdc4, #45b7af);
    color: var(--white);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.event-month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-day {
    font-size: 1.8rem;
    font-weight: 700;
}

.event-content {
    padding: 25px;
    flex: 1;
}

.event-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.event-location {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.event-location i {
    margin-right: 5px;
}

.event-content p {
    color: #333;
    font-size: 0.9rem;
}

/* ========================================
   Stats Section
   ======================================== */
.stats {
    background: linear-gradient(135deg, #00acc1, #00838f);
    padding: 80px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: 15px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 5px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-color);
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray);
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

/* ========================================
   Organization Page
   ======================================== */
.hero-page {
    height: 50vh;
    background: linear-gradient(135deg, #0a1929 0%, #051015 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/frontpage/pagina_primire.png') center/cover;
    opacity: 0.5;
}

.hero-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 25, 41, 0.9) 0%, rgba(5, 16, 21, 0.95) 100%);
}

.hero-page .hero-content {
    position: relative;
    z-index: 1;
}

.hero-page .hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.hero-page .hero-description {
    font-size: 1.2rem;
    color: var(--gray-light);
}

/* Organization Section */
.organization {
    background: #e0f7fa;
    padding: 100px 0;
}

.organization .section-description {
    color: #000;
}

/* Organization Cards */
.org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.org-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.org-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
}

.org-card.org-card-blue::before { background: #3498db; }
.org-card.org-card-yellow::before { background: #f1c40f; }
.org-card.org-card-red::before { background: #e74c3c; }
.org-card.org-card-purple::before { background: #9b59b6; }

.org-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.org-card.org-card-blue .org-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.org-card.org-card-yellow .org-icon {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.org-card.org-card-red .org-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.org-card.org-card-purple .org-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.org-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.org-icon i {
    font-size: 2rem;
    color: var(--white);
}

.org-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.org-age {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.org-card p {
    color: #000;
    font-size: 0.9rem;
}

/* Team Section */
.team {
    background: var(--light-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 20px 0 5px;
    padding: 0 15px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.team-desc {
    color: var(--gray);
    font-size: 0.85rem;
    padding: 0 15px 20px;
}

/* Values Section */
.values {
    background: var(--light-color);
}

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

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-item:hover {
    transform: translateY(-10px);
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.2);
}

.value-item:hover i {
    color: var(--white);
}

.value-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .age-grid,
    .groups-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .age-grid,
    .groups-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Contact Page
   ======================================== */
.contact-page {
    background: var(--light-color);
    padding: 100px 0;
}

.contact-page .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-page .contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-page .contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.contact-page .contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-page .contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-page .contact-item h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-page .contact-item p {
    color: var(--gray);
}

.contact-page .contact-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.contact-page .contact-social a {
    width: 45px;
    height: 45px;
    background: #0a1929;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-page .contact-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact-page .contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-page .contact-form h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.contact-page .form-group {
    margin-bottom: 20px;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-page .form-group input:focus,
.contact-page .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.contact-page .form-group textarea {
    resize: vertical;
}

.contact-page .contact-form .btn {
    width: 100%;
}

/* FAQ Section */
.faq {
    background: var(--white);
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--primary-color);
}

.faq-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .contact-page .contact-content {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 60px 0;
    }
    
    .contact-page .contact-form {
        padding: 25px;
    }
}

/* ========================================
   Grupe (Age Groups & Local Groups) Page
   ======================================== */
.age-groups {
    background: #e0f7fa;
    padding: 100px 0;
}

.age-groups .section-description {
    color: #000;
}

.local-groups .section-description {
    color: #000;
}

.team .section-description {
    color: #000;
}

.age-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.age-card {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.age-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.age-image {
    width: 100%;
    height: 150px;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.age-card:hover .age-image img {
    transform: scale(1.1);
}

.age-card.age-card-blue .age-header {
    background: linear-gradient(135deg, #5dade2, #3498db);
}

.age-card.age-card-yellow .age-header {
    background: linear-gradient(135deg, #f7dc6f, #f1c40f);
}

.age-card.age-card-red .age-header {
    background: linear-gradient(135deg, #ec7063, #e74c3c);
}

.age-card.age-card-purple .age-header {
    background: linear-gradient(135deg, #af7ac5, #9b59b6);
}

.age-card.age-card-blue .age-icon i { color: #3498db; }
.age-card.age-card-yellow .age-icon i { color: #f1c40f; }
.age-card.age-card-red .age-icon i { color: #e74c3c; }
.age-card.age-card-purple .age-icon i { color: #9b59b6; }

.age-header {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.age-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.age-icon i {
    font-size: 1.5rem;
    color: #0a1929;
}

.age-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 5px;
}

.age-range {
    display: block;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.9;
}

.age-class {
    display: block;
    color: var(--white);
    font-size: 0.8rem;
    opacity: 0.8;
}

.age-content {
    padding: 25px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.age-content p {
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.age-activities {
    list-style: none;
    margin-bottom: 20px;
}

.age-activities li {
    color: #333;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.age-activities li i {
    color: #e74c3c;
    font-size: 0.8rem;
}

.age-badge {
    background: #2c3e50;
    color: var(--white);
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    margin-top: auto;
    width: 100%;
    min-height: 44px;
}

.age-content {
    padding: 25px;
}

/* Local Groups */
.local-groups {
    background: var(--light-color);
    padding: 100px 0;
}

.groups-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.group-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.group-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.group-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.group-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.group-content {
    padding: 25px;
}

.group-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.group-location {
    color: #0a1929;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.group-location i {
    margin-right: 5px;
}

.group-content > p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.group-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--gray);
}

.group-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.group-info i {
    color: var(--primary-color);
}

.group-content .btn {
    width: 100%;
    text-align: center;
}

/* Join Section */
.join-section {
    background: linear-gradient(135deg, #d4af37, #b8962e);
    padding: 80px 0;
}

.join-content {
    text-align: center;
}

.join-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.join-content p {
    color: var(--gray-light);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.join-content .btn {
    background: var(--white);
    color: var(--primary-color);
}

.join-content .btn:hover {
    background: var(--dark-color);
    color: var(--white);
}

@media (max-width: 1024px) {
    .age-grid,
    .groups-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .age-grid,
    .groups-grid {
        grid-template-columns: 1fr;
    }
    
    .join-content h2 {
        font-size: 1.8rem;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.footer-section p {
    color: var(--gray);
    font-size: 0.95rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--gray);
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-family: var(--font-body);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--dark-light);
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-bottom-links {
    margin-top: 10px;
}

.footer-bottom-links a {
    color: var(--gray);
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .activities-grid,
    .events-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow);
    }

    .nav-list.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .activities-grid,
    .events-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .contact-social {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 25px;
    }

    .activity-card,
    .event-card {
        padding: 20px;
    }
}
.hidden { display: none !important; } 
