/* ==========================================================================
   ART STUDIO VANJA - Main Stylesheet (Redesigned based on Roll-up)
   ========================================================================== */

/* CSS Variables - Based on Roll-up Design */
:root {
    /* Brand Colors from Roll-up */
    --color-rose: #C5A5A5;
    --color-yellow: #FFD700;
    --color-green: #7CB342;
    --color-red: #E53935;
    --color-blue: #1E88E5;
    --color-purple: #7B1FA2;
    --color-peach: #F5E6D3;
    --color-peach-light: #FFF8F0;

    /* Neutral Colors */
    --dark-color: #2C1810;
    --text-color: #333333;
    --text-light: #666666;
    --white: #FFFFFF;

    /* Effects */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-colored: 0 8px 20px rgba(197, 165, 165, 0.3);
    --transition: all 0.3s ease;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Playfair Display', serif;
    --font-handwritten: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    position: relative;
}

/* Watercolor Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(245, 230, 211, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(197, 165, 165, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(124, 179, 66, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

/* Handwritten Style for Titles */
.handwritten {
    font-family: var(--font-handwritten);
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

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

.btn-primary:hover {
    background-color: var(--color-purple);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(123, 31, 162, 0.3);
}

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

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

.btn-light {
    background-color: var(--white);
    color: var(--color-rose);
}

.btn-light:hover {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: var(--font-handwritten);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-rose);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-rose);
    transition: var(--transition);
}

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

.contact-btn {
    padding: 8px 20px;
    background-color: var(--color-rose);
    color: var(--white);
    border-radius: 25px;
}

.contact-btn::after {
    display: none;
}

.contact-btn:hover {
    background-color: var(--color-purple);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-rose);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-peach) 0%, var(--color-peach-light) 100%);
    color: var(--dark-color);
    text-align: center;
    padding: 100px 20px 50px;
    overflow: hidden;
}

/* Watercolor effect overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(197, 165, 165, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(124, 179, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(229, 57, 53, 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-handwritten);
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    animation: fadeInUp 1s ease;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--text-color);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-rose);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: var(--color-rose);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-peach) 0%, var(--color-peach-light) 100%);
    color: var(--dark-color);
    text-align: center;
    padding: 150px 20px 80px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(197, 165, 165, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 179, 66, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-family: var(--font-handwritten);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* Section Styling */
section {
    padding: 80px 0;
}

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

.section-title {
    font-family: var(--font-handwritten);
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-rose), var(--color-purple));
    margin: 0 auto 1rem;
}

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

/* Mission Grid - Colorful Circle Icons */
.mission {
    background-color: var(--color-peach-light);
    position: relative;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(229, 57, 53, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
}

.mission-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
}

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

/* Colorful Circle Icons like Roll-up */
.mission-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: var(--transition);
}

.mission-card:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Individual colors for each icon */
.mission-card:nth-child(1) .mission-icon {
    background: linear-gradient(135deg, var(--color-yellow) 0%, #FFE44D 100%);
}

.mission-card:nth-child(2) .mission-icon {
    background: linear-gradient(135deg, var(--color-green) 0%, #9CCC65 100%);
}

.mission-card:nth-child(3) .mission-icon {
    background: linear-gradient(135deg, var(--color-red) 0%, #EF5350 100%);
}

.mission-card:nth-child(4) .mission-icon {
    background: linear-gradient(135deg, var(--color-blue) 0%, #42A5F5 100%);
}

.mission-card:nth-child(5) .mission-icon {
    background: linear-gradient(135deg, var(--color-purple) 0%, #9C27B0 100%);
}

.mission-card:nth-child(6) .mission-icon {
    background: linear-gradient(135deg, var(--color-rose) 0%, #D4A5A5 100%);
}

.mission-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.mission-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Projects Grid */
.featured-projects {
    background-color: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 3px solid transparent;
}

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

/* Color borders for project cards */
.project-card:nth-child(3n+1) {
    border-color: var(--color-yellow);
}

.project-card:nth-child(3n+2) {
    border-color: var(--color-green);
}

.project-card:nth-child(3n) {
    border-color: var(--color-red);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(197, 165, 165, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    color: var(--white);
    border: 2px solid var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    background: none;
    cursor: pointer;
    font-weight: 500;
}

.project-link:hover {
    background-color: var(--white);
    color: var(--color-rose);
}

.project-info {
    padding: 1.5rem;
}

.project-year {
    display: inline-block;
    background-color: var(--color-rose);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.project-title {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.project-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tag {
    background-color: var(--color-peach);
    color: var(--dark-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

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

/* Filter Section */
.filter-section {
    background-color: var(--color-peach-light);
    padding: 2rem 0;
}

.filter-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 600;
    color: var(--dark-color);
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--white);
    color: var(--text-color);
    border: 2px solid transparent;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-rose);
    color: var(--white);
    border-color: var(--color-rose);
}

.projects-section {
    padding: 60px 0;
}

/* About Page */
.about-content {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-text h2 {
    font-family: var(--font-handwritten);
    color: var(--color-rose);
    margin-bottom: 1.5rem;
}

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

.content-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--color-peach);
}

.content-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Founder Page Styles */

/* Founder Profile Section */
.founder-profile {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--color-peach-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.founder-profile::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 165, 165, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.profile-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.profile-image-container {
    position: relative;
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-colored);
    transition: var(--transition);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.profile-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(197, 165, 165, 0.4);
}

.profile-intro h2 {
    font-family: var(--font-handwritten);
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.profile-quote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    padding: 1.5rem 0;
    border-left: 4px solid var(--color-rose);
    padding-left: 2rem;
    margin-bottom: 2rem;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 0 10px 10px 0;
}

.profile-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

.highlight-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-purple) 100%);
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.founder-biography {
    padding: 60px 0;
    background-color: var(--white);
}

.bio-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.bio-text h2 {
    font-family: var(--font-handwritten);
    color: var(--color-rose);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.bio-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-card {
    background: linear-gradient(135deg, var(--color-peach) 0%, var(--color-peach-light) 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.contact-card h3 {
    font-family: var(--font-handwritten);
    color: var(--color-rose);
    margin-bottom: 1.5rem;
}

.contact-card p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-card a {
    color: var(--color-rose);
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* International Presence */
.international-section {
    background-color: var(--color-peach-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.international-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(197, 165, 165, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 179, 66, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
}

.country-badge {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.country-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-rose);
}

/* Awards Section */
.awards-section {
    background-color: var(--white);
    padding: 80px 0;
}

.awards-list-detailed {
    max-width: 800px;
    margin: 0 auto;
}

.award-item-detailed {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--color-peach-light) 0%, var(--white) 100%);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 5px solid var(--color-yellow);
}

.award-item-detailed:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.award-year {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-rose);
    flex-shrink: 0;
    line-height: 1;
}

.award-content h3 {
    font-family: var(--font-handwritten);
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.award-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Timeline for Solo Exhibitions */
.exhibitions-section {
    background-color: var(--color-peach-light);
    padding: 80px 0;
}

.timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--color-rose), var(--color-purple));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 5px;
    width: 16px;
    height: 16px;
    background-color: var(--color-rose);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--color-rose);
    z-index: 1;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-rose);
    margin-bottom: 0.5rem;
}

.timeline-content {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* International Group Exhibitions */
.group-intl-exhibitions {
    background-color: var(--white);
    padding: 80px 0;
}

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

.exhibition-card {
    background-color: var(--color-peach-light);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid var(--color-blue);
}

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

.exhibition-year {
    display: inline-block;
    background-color: var(--color-rose);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.exhibition-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.exhibition-location {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.exhibition-countries {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(197, 165, 165, 0.3);
}

/* National Group Exhibitions */
.group-national-exhibitions {
    background-color: var(--color-peach-light);
    padding: 80px 0;
}

.national-exhibitions-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.national-exhibition-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 5px solid var(--color-green);
}

.national-exhibition-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.nat-ex-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-rose);
    flex-shrink: 0;
    min-width: 60px;
}

.nat-ex-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.nat-ex-content p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Projects Section on Founder Page */
.projects-section-founder {
    background-color: var(--white);
    padding: 80px 0;
}

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

.project-founder-card {
    background: linear-gradient(135deg, var(--color-peach) 0%, var(--color-peach-light) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid var(--color-purple);
}

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

.project-founder-year {
    display: inline-block;
    background-color: var(--color-rose);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-founder-card h3 {
    font-family: var(--font-handwritten);
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-founder-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Founder Biography */
.founder-bio {
    background-color: var(--white);
    padding: 80px 0;
}

.founder-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.founder-main h3 {
    font-family: var(--font-handwritten);
    color: var(--color-rose);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.founder-intro {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.founder-main p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.founder-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-box {
    background-color: var(--color-peach-light);
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid var(--color-rose);
    box-shadow: var(--shadow);
}

.highlight-box h4 {
    font-family: var(--font-handwritten);
    color: var(--color-rose);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.awards-list,
.exhibitions-list {
    list-style: none;
    padding: 0;
}

.awards-list li,
.exhibitions-list li {
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.awards-list li::before,
.exhibitions-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--color-yellow);
    font-size: 1.2rem;
}

.awards-list strong,
.exhibitions-list strong {
    color: var(--color-rose);
    font-weight: 600;
}

.bio-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.bio-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.bio-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-rose);
    margin-bottom: 0.5rem;
}

.bio-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.3;
}

/* Vision Mission Values */
.vmv-section {
    background-color: var(--color-peach-light);
    position: relative;
}

.vmv-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(124, 179, 66, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(30, 136, 229, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
}

.vmv-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.vmv-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.vmv-card h3 {
    font-family: var(--font-handwritten);
    color: var(--color-rose);
    margin-bottom: 1rem;
}

.vmv-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Activities */
.activities-list {
    max-width: 900px;
    margin: 0 auto;
}

.activity-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--color-peach-light);
    border-radius: 20px;
    transition: var(--transition);
    border-left: 5px solid var(--color-rose);
}

.activity-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(10px);
}

.activity-item:nth-child(2) {
    border-left-color: var(--color-yellow);
}

.activity-item:nth-child(3) {
    border-left-color: var(--color-green);
}

.activity-item:nth-child(4) {
    border-left-color: var(--color-blue);
}

.activity-item:nth-child(5) {
    border-left-color: var(--color-purple);
}

.activity-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-rose);
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.activity-content h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.activity-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-purple) 100%);
    color: var(--white);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    position: relative;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Statute Page */
.statute-content {
    padding: 60px 0;
}

.statute-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.statute-info {
    background-color: var(--color-peach-light);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border-left: 5px solid var(--color-rose);
}

.statute-info p {
    margin-bottom: 0.5rem;
}

.statute-document {
    background-color: var(--white);
}

.statute-section {
    margin-bottom: 3rem;
}

.statute-section h2 {
    font-family: var(--font-handwritten);
    color: var(--color-rose);
    border-bottom: 2px solid var(--color-rose);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.statute-article {
    margin-bottom: 2rem;
    padding-left: 1rem;
}

.statute-article h3 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.statute-article p,
.statute-article ul {
    color: var(--text-light);
    line-height: 1.8;
}

.statute-article ul {
    margin-left: 2rem;
}

.statute-article li {
    list-style: disc;
    margin-bottom: 0.5rem;
}

.statute-note {
    background-color: #FFF3CD;
    border-left: 4px solid var(--color-yellow);
    padding: 1.5rem;
    margin: 3rem 0;
    border-radius: 10px;
}

.statute-note p {
    margin-bottom: 0;
    color: #856404;
}

.statute-note a {
    color: var(--color-rose);
    font-weight: 600;
}

.statute-download {
    background-color: var(--color-peach-light);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
}

.statute-download h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.statute-download p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.download-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.download-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.download-buttons .btn-primary {
    background: linear-gradient(135deg, var(--color-rose), var(--color-yellow));
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(197, 165, 165, 0.3);
}

.download-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 165, 165, 0.4);
}

.download-buttons .btn-secondary {
    background: white;
    color: var(--dark-color);
    border: 2px solid var(--color-rose);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.download-buttons .btn-secondary:hover {
    background: var(--color-rose);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 165, 165, 0.3);
}

.download-buttons .btn svg {
    width: 20px;
    height: 20px;
}

.download-info {
    margin-top: 1rem;
    margin-bottom: 0;
}

.download-info small {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .download-buttons {
        flex-direction: column;
        gap: 1rem;
    }

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

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper h2 {
    font-family: var(--font-handwritten);
    color: var(--color-rose);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--color-peach);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-message {
    padding: 1rem;
    border-radius: 10px;
    display: none;
    margin-top: 1rem;
}

.form-message.success {
    display: block;
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.form-message.error {
    display: block;
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

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

.contact-info-card {
    background-color: var(--color-peach-light);
    padding: 2rem;
    border-radius: 20px;
}

.contact-info-card h3 {
    font-family: var(--font-handwritten);
    color: var(--color-rose);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--dark-color);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.info-content a {
    color: var(--color-rose);
}

.info-content a:hover {
    text-decoration: underline;
}

.social-media {
    background-color: var(--color-peach-light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.social-media h3 {
    font-family: var(--font-handwritten);
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.social-media p {
    margin-bottom: 0;
}

.instagram-link {
    display: block;
    text-decoration: none;
    margin-top: 1.5rem;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(131, 58, 180, 0.3);
}

.instagram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(131, 58, 180, 0.4);
}

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

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--white);
    color: var(--color-rose);
    transform: translateY(-5px);
}

.map-section {
    background-color: var(--color-peach-light);
    padding: 3rem 0;
}

.map-placeholder {
    background-color: #E0E0E0;
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

/* Project Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    overflow-x: hidden;
}

.modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
}

.modal-content {
    background-color: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    position: relative;
    animation: slideIn 0.3s ease;
    margin: 0 auto;
}

.modal-close {
    position: sticky;
    top: 15px;
    float: right;
    margin-right: 20px;
    margin-top: 15px;
    font-size: 2rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    color: var(--dark-color);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.modal-close:hover {
    color: var(--color-rose);
    background: var(--color-peach-light);
}

.modal-body {
    padding: 3rem;
    clear: both;
}

/* ==========================================================================
   Events Section
   ========================================================================== */

.events {
    background-color: var(--white);
    position: relative;
}

/* Loading State */
.events-loading {
    text-align: center;
    padding: 60px 20px;
    display: none;
}

.events-loading.active {
    display: block;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--color-peach);
    border-top-color: var(--color-rose);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.events-loading p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Events Grid */
.events-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.events-grid.active {
    display: grid;
}

/* Event Card */
.event-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--color-rose);
    display: flex;
    flex-direction: column;
}

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

/* Date Badge */
.event-date-badge {
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-purple) 100%);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.event-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

/* Event Content */
.event-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-meta-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.event-day-name {
    font-weight: 500;
    color: var(--color-rose);
}

.event-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.event-description {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.event-location {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    padding-top: 1rem;
    margin-top: auto;
    border-top: 1px solid var(--color-peach);
    font-size: 0.9rem;
    color: var(--text-light);
}

.event-location svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Empty State */
.events-empty {
    text-align: center;
    padding: 60px 20px;
    display: none;
}

.events-empty.active {
    display: block;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.events-empty p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.empty-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Calendar Link */
.events-calendar-link {
    text-align: center;
    padding-top: 2rem;
    display: none;
}

.events-calendar-link.active {
    display: block;
}

.calendar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-rose);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-peach);
    border-radius: 50px;
    transition: var(--transition);
}

.calendar-link:hover {
    background-color: var(--color-rose);
    border-color: var(--color-rose);
    color: var(--white);
    transform: translateY(-2px);
}

.calendar-link svg {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-title {
        font-size: 1.2rem;
    }

    .event-date-badge {
        min-height: 70px;
    }

    .event-day {
        font-size: 1.75rem;
    }

    .event-month {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Cookie Consent Banner
   ========================================================================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 24, 16, 0.97);
    color: var(--white);
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-yellow);
    font-weight: 600;
}

.cookie-consent-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    opacity: 0.9;
}

.cookie-consent-text a {
    color: var(--color-yellow);
    text-decoration: underline;
    transition: var(--transition);
}

.cookie-consent-text a:hover {
    color: var(--white);
}

.cookie-consent-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    white-space: nowrap;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-purple) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(197, 165, 165, 0.4);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 165, 165, 0.6);
}

.cookie-decline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 1.25rem 0;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .cookie-consent-text {
        min-width: 100%;
    }

    .cookie-consent-text h3 {
        font-size: 1rem;
    }

    .cookie-consent-text p {
        font-size: 0.9rem;
    }

    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-consent-btn {
        flex: 1;
        min-width: 120px;
    }
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-purple) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(197, 165, 165, 0.4);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(197, 165, 165, 0.6);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-purple) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta h2 {
    font-family: var(--font-handwritten);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--color-rose);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--white);
    opacity: 0.8;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--color-rose);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.6;
    margin-bottom: 0;
}

/* ==========================================================================
   Team Page Styles
   ========================================================================== */

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

.team-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.team-members {
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    margin-bottom: 80px;
    background: linear-gradient(135deg, var(--color-peach-light) 0%, var(--white) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 165, 165, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.member-image {
    position: relative;
    z-index: 1;
}

.member-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.member-image img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-colored);
}

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

.member-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-rose);
}

.member-header h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.member-role {
    font-size: 1.1rem;
    color: var(--color-rose);
    font-weight: 500;
    font-style: italic;
}

.member-bio {
    margin-bottom: 2rem;
}

.member-bio p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.member-bio p:last-child {
    margin-bottom: 0;
}

.member-responsibilities {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--color-rose);
    box-shadow: var(--shadow);
}

.member-responsibilities h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.member-responsibilities ul {
    list-style: none;
    padding: 0;
}

.member-responsibilities ul li {
    font-size: 1rem;
    color: var(--text-color);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.member-responsibilities ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--color-rose);
    font-size: 1.2rem;
}

.team-expansion-notice {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(197, 165, 165, 0.1) 0%, rgba(245, 230, 211, 0.1) 100%);
    border-radius: 15px;
    border: 2px dashed var(--color-rose);
    margin-top: 3rem;
}

.team-expansion-notice p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* Animations */
@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);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

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

/* Workshops Page Styles */
.workshops-intro {
    background-color: var(--white);
    padding: 80px 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-family: var(--font-handwritten);
    color: var(--color-rose);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-content > p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.intro-highlight-item {
    text-align: center;
}

.highlight-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-rose);
    margin-bottom: 0.5rem;
}

.intro-highlight-item p {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0;
}

/* Workshop Detail Sections */
.workshop-detail {
    padding: 80px 0;
    background-color: var(--color-peach-light);
}

.workshop-detail:nth-child(odd) {
    background-color: var(--white);
}

.workshop-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.workshop-reverse .workshop-layout {
    grid-template-columns: 1.5fr 1fr;
}

.workshop-image {
    position: sticky;
    top: 100px;
}

.workshop-placeholder {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.workshop-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-purple) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.workshop-info h2 {
    font-family: var(--font-handwritten);
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.workshop-tagline {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.workshop-meta {
    background-color: var(--color-peach-light);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--color-rose);
}

.workshop-detail:nth-child(odd) .workshop-meta {
    background-color: var(--color-peach);
}

.meta-item {
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.meta-item:last-child {
    margin-bottom: 0;
}

.meta-item strong {
    color: var(--dark-color);
    font-weight: 600;
}

.workshop-description h3 {
    font-family: var(--font-handwritten);
    color: var(--color-rose);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.workshop-description h4 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.workshop-description > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.workshop-curriculum {
    list-style: none;
    padding: 0;
}

.workshop-curriculum li {
    color: var(--text-light);
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.6;
}

.workshop-curriculum li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.workshop-curriculum strong {
    color: var(--dark-color);
    font-weight: 600;
}

.workshop-outcomes {
    background: linear-gradient(135deg, var(--color-peach) 0%, var(--color-peach-light) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: var(--shadow);
}

.workshop-detail:nth-child(odd) .workshop-outcomes {
    background: linear-gradient(135deg, var(--color-peach-light) 0%, var(--white) 100%);
}

.workshop-outcomes h4 {
    color: var(--color-rose);
    margin-top: 0;
}

.workshop-outcomes ul {
    list-style: none;
    padding: 0;
}

.workshop-outcomes li {
    color: var(--text-color);
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.6;
}

.workshop-outcomes li:last-child {
    margin-bottom: 0;
}

.workshop-outcomes li::before {
    content: '🎯';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Additional Info Section */
.workshops-additional-info {
    background-color: var(--color-peach-light);
    padding: 80px 0;
}

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

.info-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid var(--color-rose);
}

.info-card:nth-child(2) {
    border-top-color: var(--color-blue);
}

.info-card:nth-child(3) {
    border-top-color: var(--color-green);
}

.info-card:nth-child(4) {
    border-top-color: var(--color-purple);
}

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

.info-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: var(--font-handwritten);
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

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

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    /* Page Header */
    .page-header {
        padding: 120px 20px 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    /* Grids */
    .content-grid,
    .contact-grid,
    .founder-content,
    .bio-intro,
    .profile-wrapper {
        grid-template-columns: 1fr;
    }

    .profile-image-container {
        max-width: 400px;
        margin: 0 auto;
    }

    .bio-stats {
        grid-template-columns: 1fr;
    }

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

    .exhibitions-grid,
    .projects-founder-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        position: static;
    }

    .award-item-detailed,
    .national-exhibition-item {
        flex-direction: column;
        text-align: center;
    }

    .award-year,
    .nat-ex-year {
        font-size: 2rem;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    /* Workshops responsive */
    .workshop-layout,
    .workshop-reverse .workshop-layout {
        grid-template-columns: 1fr;
    }

    .workshop-image {
        position: static;
        margin-bottom: 2rem;
    }

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

    .additional-info-grid {
        grid-template-columns: 1fr;
    }

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

    .mission-grid,
    .vmv-grid {
        grid-template-columns: 1fr;
    }

    /* Activities */
    .activity-item {
        flex-direction: column;
        text-align: center;
    }

    /* Stats */
    .stat-number {
        font-size: 2.5rem;
    }

    /* Modal */
    .modal.active {
        padding: 20px 10px;
    }

    .modal-body {
        padding: 2rem 1.5rem;
    }

    .modal-close {
        top: 10px;
        margin-right: 10px;
        margin-top: 10px;
    }

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

    /* Filters */
    .filter-wrapper {
        flex-direction: column;
    }

    .filter-buttons {
        justify-content: center;
    }

    /* Team responsive */
    .team-member {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .member-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .member-responsibilities {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
    }

    section {
        padding: 50px 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .mission-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

/* Workshop Gallery */
.workshop-gallery {
    padding: 80px 20px;
    background: linear-gradient(to bottom, var(--white), var(--color-peach-light));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: var(--color-peach-light);
    aspect-ratio: 1;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

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

.gallery-placeholder {
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 2rem;
}

.gallery-placeholder p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
    background: white;
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.lightbox-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 14px;
}

.gallery-toggle-btn {
    text-align: center;
    margin-top: 3rem;
}

.gallery-toggle-btn .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--color-rose), var(--color-yellow));
    color: var(--dark-color);
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 165, 165, 0.3);
}

.gallery-toggle-btn .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 165, 165, 0.4);
}

.gallery-toggle-btn .btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.gallery-toggle-btn .btn.active svg {
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}
