/* ============================================
   BELLA GAR - Fresh Feminine Fun Theme
   Lavender, Sage & Coral palette
   Playful, modern, energetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    /* Feminine Non-Pink Palette */
    --primary: #7C6A9C;           /* Soft lavender purple */
    --primary-light: #9D8EC4;     /* Light lavender */
    --primary-dark: #5D4E7A;      /* Deep purple */
    --accent: #E8846B;            /* Warm coral */
    --accent-light: #F4A593;      /* Soft coral */
    --sage: #8FAE8B;              /* Fresh sage green */
    --sage-light: #B8D4B5;        /* Light sage */
    --gold: #D4A574;              /* Warm gold */

    /* Backgrounds */
    --bg-cream: #FBF8F5;
    --bg-white: #FFFFFF;
    --bg-lavender: #F5F2F9;
    --bg-sage: #F2F7F1;

    /* Text */
    --text-dark: #2D2A33;
    --text-body: #5A5660;
    --text-muted: #8A8690;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Fun elements */
    --radius-soft: 24px;
    --radius-round: 50px;
    --shadow-soft: 0 8px 30px rgba(124, 106, 156, 0.12);
    --shadow-hover: 0 15px 40px rgba(124, 106, 156, 0.2);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Accessibility - Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-round);
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 20px;
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: var(--font-body);
    background: var(--bg-cream);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

/* Fun Decorative Elements */
.blob {
    position: absolute;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-morph 8s ease-in-out infinite;
}

@keyframes blob-morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    padding: 15px 50px;
}

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

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

.logo-text {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 12px 28px;
    border-radius: var(--radius-round);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(124, 106, 156, 0.3);
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(124, 106, 156, 0.4);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 50px 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--sage-light) 0%, transparent 60%);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-light) 0%, transparent 60%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    padding-right: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-white);
    padding: 10px 24px 10px 12px;
    border-radius: var(--radius-round);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    margin-bottom: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(124, 106, 156, 0.1);
}

.hero-badge .flag {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 8px 14px;
    border-radius: var(--radius-round);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 25px;
}

.hero h1 .line-1 {
    display: block;
    font-size: clamp(50px, 8vw, 90px);
    color: var(--text-dark);
    font-style: italic;
}

.hero h1 .line-2 {
    display: block;
    font-size: clamp(70px, 12vw, 140px);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 40%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.hero-disciplines {
    display: flex;
    gap: 25px;
}

.discipline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.discipline-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.discipline-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--primary);
    transition: all 0.3s;
}

.discipline:hover .discipline-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transform: translateY(-8px) rotate(-5deg);
    border-color: white;
}

.discipline:hover .discipline-icon svg {
    stroke: white;
}

.discipline span:last-child {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-soft);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-hover);
}

.image-blob {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-soft);
    z-index: 1;
    animation: blob-float 6s ease-in-out infinite;
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(5px, -10px) rotate(2deg); }
}

.image-caption {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: var(--bg-white);
    padding: 14px 28px;
    border-radius: var(--radius-round);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    z-index: 3;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 8px;
}

.image-caption::before {
    content: '✨';
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-scroll span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.scroll-indicator {
    width: 26px;
    height: 44px;
    border: 2px solid var(--primary-light);
    border-radius: 13px;
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 10px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 22px; opacity: 0.5; }
}

/* Section Label */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 55px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

/* About Section */
.about {
    padding: var(--section-padding);
    padding-left: 50px;
    padding-right: 50px;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 60%;
    background: var(--bg-lavender);
    transform: translateY(-50%) skewY(-3deg);
    z-index: -1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
}

.about-image {
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-soft);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-hover);
}

.image-decoration {
    position: absolute;
    top: 25px;
    left: 25px;
    right: -25px;
    bottom: -25px;
    border: 3px solid var(--sage);
    border-radius: var(--radius-soft);
    z-index: 1;
}

.about-content {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.about-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 30px;
    font-style: italic;
}

.about-lead {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-lead strong {
    color: var(--primary);
    font-weight: 600;
}

.about-content p {
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    gap: 35px;
    padding-top: 30px;
    border-top: 2px solid var(--sage-light);
}

.mini-stat {
    text-align: center;
    padding: 15px 20px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
}

.mini-stat:hover {
    transform: translateY(-5px);
}

.mini-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.mini-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Achievements */
.achievements {
    padding: var(--section-padding);
    padding-left: 50px;
    padding-right: 50px;
    background: var(--bg-white);
}

.achievements-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.achievements-header .section-label {
    padding-left: 0;
}

.achievements-header .section-label::before {
    display: none;
}

.achievements-header h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: var(--text-dark);
    font-style: italic;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.achievement-card {
    background: var(--bg-lavender);
    padding: 40px;
    border-radius: var(--radius-soft);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.achievement-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.achievement-card:nth-child(2).visible {
    transition-delay: 0.1s;
}

.achievement-card:nth-child(3).visible {
    transition-delay: 0.2s;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--sage-light);
}

.achievement-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.card-medal, .card-icon {
    width: 65px;
    height: 65px;
    background: var(--bg-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: var(--shadow-soft);
}

.card-medal svg {
    width: 30px;
    height: 30px;
    fill: var(--gold);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.featured .card-medal {
    background: rgba(255, 255, 255, 0.2);
}

.featured .card-medal svg {
    fill: white;
}

.card-position {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.9;
    font-style: italic;
}

.achievement-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.featured h3 {
    color: white;
}

.achievement-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px;
    background: rgba(124, 106, 156, 0.1);
    border-radius: var(--radius-round);
    color: var(--primary);
}

.featured .card-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Gallery */
.gallery {
    padding: var(--section-padding);
    padding-left: 50px;
    padding-right: 50px;
    background: var(--bg-sage);
    position: relative;
}

.gallery::before {
    content: '📸';
    position: absolute;
    top: 80px;
    right: 100px;
    font-size: 60px;
    opacity: 0.3;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: var(--container-width);
    margin: 0 auto 50px;
}

.gallery-title h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: var(--text-dark);
    font-style: italic;
}

.gallery-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
    padding: 12px 24px;
    background: var(--bg-white);
    border-radius: var(--radius-round);
    transition: all 0.3s;
    box-shadow: var(--shadow-soft);
}

.gallery-cta:hover {
    gap: 14px;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.gallery-mosaic.two-items {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 400px;
}

.mosaic-item {
    position: relative;
    border-radius: var(--radius-soft);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mosaic-item.visible {
    opacity: 1;
    transform: scale(1);
}

.mosaic-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mosaic-item.large img {
    object-position: center center;
}

.mosaic-item:hover img {
    transform: scale(1.08);
}

.mosaic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(45, 42, 51, 0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mosaic-item:hover .mosaic-overlay {
    transform: translateY(0);
}

.mosaic-caption {
    color: white;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mosaic-caption::before {
    content: '→';
    opacity: 0.7;
}

/* Gallery Categories */
.gallery-category {
    max-width: var(--container-width);
    margin: 0 auto 60px;
}

.gallery-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), transparent);
    border-radius: 1px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-soft);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Team Section */
.team-section {
    padding: var(--section-padding);
    padding-left: 50px;
    padding-right: 50px;
    background: var(--bg-white);
}

.team-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-content h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.team-content > p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 30px;
}

.team-details {
    display: flex;
    gap: 40px;
}

.team-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 25px;
    background: var(--bg-lavender);
    border-radius: 16px;
}

.detail-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.detail-value {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.team-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-placeholder {
    width: 240px;
    height: 240px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--sage) 100%);
    border-radius: var(--radius-soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.logo-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.team-name {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    font-style: italic;
}

.team-subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 6px;
    margin-top: 8px;
    text-transform: uppercase;
}

/* News Section */
.news-section {
    padding: var(--section-padding);
    padding-left: 50px;
    padding-right: 50px;
    background: var(--bg-lavender);
    position: relative;
}

.news-section::before {
    content: '💫';
    position: absolute;
    top: 60px;
    left: 100px;
    font-size: 50px;
    opacity: 0.4;
}

.news-header {
    max-width: var(--container-width);
    margin: 0 auto 50px;
    text-align: center;
}

.news-header .section-label {
    padding-left: 0;
}

.news-header .section-label::before {
    display: none;
}

.news-header h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: var(--text-dark);
    font-style: italic;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.news-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: var(--radius-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--sage-light);
}

.news-date {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-date::before {
    content: '📅';
    font-size: 14px;
}

.news-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.news-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Instagram Section */
.instagram-section {
    padding: var(--section-padding);
    padding-left: 50px;
    padding-right: 50px;
    background: var(--bg-cream);
}

.instagram-container {
    max-width: 800px;
    margin: 0 auto;
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.instagram-profile {
    display: flex;
    align-items: center;
    gap: 18px;
}

.profile-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--sage) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.profile-icon svg {
    width: 34px;
    height: 34px;
    fill: white;
}

.profile-info h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.profile-info p {
    font-size: 14px;
    color: var(--text-muted);
}

.follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-round);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(124, 106, 156, 0.3);
}

.follow-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(124, 106, 156, 0.4);
}

.instagram-embed {
    display: flex;
    justify-content: center;
}

.instagram-embed blockquote {
    margin: 0 auto !important;
}

/* Connect */
.connect {
    padding: var(--section-padding);
    padding-left: 50px;
    padding-right: 50px;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.connect::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: var(--bg-lavender);
    border-radius: 50%;
    opacity: 0.5;
}

.connect::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: var(--bg-sage);
    border-radius: 50%;
    opacity: 0.5;
}

.connect-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.connect-content h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.connect-content > p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.connect-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 18px 36px;
    border-radius: var(--radius-round);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(124, 106, 156, 0.35);
}

.btn-instagram svg {
    width: 24px;
    height: 24px;
}

.btn-instagram:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(124, 106, 156, 0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-dark);
    padding: 18px 36px;
    border: 2px solid var(--primary-light);
    border-radius: var(--radius-round);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.connect-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--sage-light);
    opacity: 0.3;
}

.deco-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.deco-circle:nth-child(2) {
    width: 500px;
    height: 500px;
    top: -250px;
    left: -250px;
}

.deco-circle:nth-child(3) {
    width: 700px;
    height: 700px;
    top: -350px;
    left: -350px;
}

/* Footer */
.footer {
    padding: 70px 50px 35px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--text-dark) 100%);
    color: white;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--sage));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
}

.footer-subtitle {
    display: block;
    font-size: 14px;
    opacity: 0.6;
    margin-top: 6px;
    font-family: var(--font-body);
    font-style: normal;
}

.footer-links {
    display: flex;
    gap: 35px;
}

.footer-links a {
    font-size: 15px;
    opacity: 0.7;
    transition: all 0.3s;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-top: 35px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.5;
}

/* Fun Photo Grid Section */
.photo-showcase {
    padding: 80px 50px;
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

.photo-showcase::before {
    content: '🏃‍♀️ 🚴‍♀️ 🏊‍♀️';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    letter-spacing: 20px;
    opacity: 0.4;
}

.photo-marquee {
    display: flex;
    gap: 20px;
    animation: marquee 30s linear infinite;
}

.photo-marquee img {
    height: 250px;
    width: auto;
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
}

.photo-marquee img:hover {
    transform: scale(1.05);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding-top: 140px;
    }

    .hero-content {
        padding-right: 0;
        order: 2;
    }

    .hero-badge {
        justify-content: center;
    }

    .hero-disciplines {
        justify-content: center;
    }

    .hero-image {
        order: 1;
    }

    .image-wrapper img {
        height: 420px;
    }

    .image-blob {
        top: -15px;
        right: -15px;
    }

    .hero-scroll {
        display: none;
    }

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

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

    .team-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-details {
        justify-content: center;
    }

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

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

    .mosaic-item.large {
        grid-column: span 2;
        grid-row: auto;
    }

    .mosaic-item {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .hero, .about, .achievements, .gallery, .connect, .instagram-section, .team-section, .news-section {
        padding-left: 20px;
        padding-right: 20px;
    }

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

    .mosaic-item.large {
        grid-column: auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-title {
        font-size: 22px;
    }

    .gallery-category {
        margin-bottom: 40px;
    }

    .instagram-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .follow-btn {
        width: 100%;
        justify-content: center;
    }

    .footer {
        padding: 50px 20px 25px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .about-image img {
        height: 380px;
    }

    .image-decoration {
        top: 12px;
        left: 12px;
        right: -12px;
        bottom: -12px;
    }

    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .achievement-card {
        padding: 30px;
    }

    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

    .btn-instagram, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 .line-1 {
        font-size: 45px;
    }

    .hero h1 .line-2 {
        font-size: 65px;
    }

    .hero-disciplines {
        gap: 15px;
    }

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

    .about-content h2,
    .achievements-header h2,
    .gallery-title h2,
    .connect-content h2,
    .team-content h2,
    .news-header h2 {
        font-size: 32px;
    }

    .about-stats {
        gap: 15px;
    }

    .mini-stat {
        padding: 12px 16px;
    }
}
