/* [Previous styles unchanged, included for context] */
:root {
    --primary-dark: #0f0f0f;
    --secondary-dark: #1a1a1a;
    --accent-dark: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #e5e5e5;
    --text-muted: #a0a0a0;
    --accent-color: #8b9dc3;
    --accent-hover: #a6b5d4;
    --border-color: #333333;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient: linear-gradient(135deg, #333333, #242424);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
}

.serif {
    font-family: 'Playfair Display', serif;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.98);
    box-shadow: 0 6px 20px var(--shadow-light);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.logo {
    height: 60px;
    transition: var(--transition);
    will-change: transform;
}

.logo:hover {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0.5rem 0;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 2px 4px var(--shadow-light);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
    transform: translateY(-2px);
}

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

.social-icon {
    color: var(--text-secondary);
    font-size: 1.8rem;
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--accent-hover);
    transform: scale(1.2) rotate(5deg);
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    padding: 10px;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hamburger:hover {
    background: rgba(42, 42, 42, 0.9);
    transform: scale(1.1);
}

.hamburger span {
    width: 30px;
    height: 4px;
    background: #e5e5e5;
    border-radius: 4px;
    transition: all 0.3s ease;
    transform-origin: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: #8b9dc3;
}

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

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



.mobile-menu {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background: var(--secondary-dark);
    border-top: 1px solid var(--border-color);
    padding: 2rem;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 999;
    box-shadow: 0 10px 20px var(--shadow-medium);
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
}

.mobile-menu .nav-link {
    display: block;
    padding: 1.2rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-menu .nav-link:hover {
    background: var(--accent-dark);
    padding-left: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/img/header-bg-3-1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.15;
    z-index: 1;
    animation: pulse 6s ease-in-out infinite;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.hero-content {
    max-width: 1100px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease-out;
}

.hero-logo {
    width: clamp(200px, 24vw, 280px);
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 10px 20px var(--shadow-medium));
    transition: var(--transition);
}

.hero-logo:hover {
    transform: scale(1.1) rotate(3deg);
    filter: drop-shadow(0 12px 24px var(--shadow-medium)) brightness(1.1);
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 6px 12px var(--shadow-medium);
    animation: textGlow 3s ease-in-out infinite alternate;
}

.hero h2 {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    text-shadow: 0 3px 6px var(--shadow-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Styles */
.section {
    padding: 10rem 0;
    position: relative;
}

.section-title {
    font-size: clamp(2.6rem, 4.5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.8rem;
    color: var(--text-primary);
    position: relative;
    letter-spacing: 0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient);
    margin: 1.2rem auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 5rem;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}

/* About Section */
.about {
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(139, 157, 195, 0.15), transparent);
    z-index: 0;
    animation: subtlePulse 8s ease-in-out infinite;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-text {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    line-height: 2;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    background: rgba(15, 15, 15, 0.6);
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px var(--shadow-light);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px var(--shadow-medium);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: var(--gradient);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    will-change: transform, box-shadow;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-hover);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 24px rgba(139, 157, 195, 0.4);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 157, 195, 0.5);
}

.hero .btn {
    font-size: 1.1rem;
    padding: 1.3rem 3.5rem;
    transform: perspective(500px) rotateX(0deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.hero .btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: transform 0.5s ease;
}

.hero .btn:hover::after {
    transform: rotate(45deg) translate(50%, 50%);
}

.hero .btn:hover {
    transform: perspective(500px) rotateX(10deg) translateY(-6px);
    box-shadow: 0 12px 24px rgba(139, 157, 195, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline::before {
    background: var(--accent-color);
}

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

/* Centered Button */
.centered-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.event-card {
    background: var(--accent-dark);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
    text-align: center;
}

.event-card::before {
    content: attr(data-date);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gradient);
    transition: height 0.4s ease;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 2;
}

.event-card:hover::before {
    height: 12px;
}

.event-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px var(--shadow-light);
    transition: transform 0.4s ease;
}

.event-card:hover .event-image {
    transform: scale(1.05);
}

.event-title {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.event-meta {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.event-description {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.event-detail-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-align: left;
}

.event-detail-value {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.release-location {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: center;
}

.release-location a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.release-location a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Special Recognition Section */
.recognition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.recognition-card {
    background: var(--accent-dark);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
    text-align: center;
}

.recognition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-hover);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.recognition-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.recognition-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gradient);
    transition: height 0.4s ease;
    z-index: 0;
}

.recognition-card:hover::after {
    height: 12px;
}

.recognition-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.recognition-title {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.recognition-description {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* Community Highlights Section */
.highlights-container {
    display: flex;
    gap: 2.5rem;
    margin-top: 4rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    position: relative;
    scroll-behavior: smooth;
}

.highlights-container::-webkit-scrollbar {
    height: 8px;
}

.highlights-container::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

.highlights-container::-webkit-scrollbar-track {
    background: var(--border-color);
}

.highlight-card {
    background: var(--accent-dark);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    min-width: 320px;
    max-width: 400px;
    scroll-snap-align: center;
    text-align: center;
    box-shadow: 0 8px 16px var(--shadow-light);
}

.highlight-card::before {
    content: attr(data-date);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gradient);
    transition: height 0.4s ease;
}

.highlight-card:hover::before {
    height: 12px;
}

.highlight-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.highlight-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px var(--shadow-light);
}

.highlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.highlight-description {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.highlight-social {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.highlight-social i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.highlight-social:hover {
    color: var(--accent-hover);
    transform: translateY(-2px);
}

.highlight-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-prev,
.highlight-next {
    background: var(--gradient);
    color: var(--text-primary);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 8px var(--shadow-light);
}

.highlight-prev:hover,
.highlight-next:hover {
    background: var(--accent-hover);
    transform: scale(1.1);
}

.highlight-prev:focus,
.highlight-next:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 157, 195, 0.5);
}

/* Timeline Section */
.timeline {
    position: relative;
    margin-top: 4rem;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.timeline-content {
    background: var(--accent-dark);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    width: 45%;
    text-align: center;
    box-shadow: 0 8px 16px var(--shadow-light);
}

.timeline-item[data-side="left"] .timeline-content {
    margin-right: 3rem;
}

.timeline-item[data-side="right"] .timeline-content {
    margin-left: 3rem;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 2px solid var(--border-color);
    transform: translateY(-50%);
}

.timeline-item[data-side="left"] .timeline-content::before {
    right: -2.5rem;
}

.timeline-item[data-side="right"] .timeline-content::before {
    left: -2.5rem;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gradient);
    transition: height 0.4s ease;
}

.timeline-content:hover::after {
    height: 12px;
}

.timeline-content:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.timeline-date {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.timeline-title {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.timeline-social {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.9;
}

.timeline-social a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.timeline-social a:hover {
    color: var(--accent-hover);
}

.timeline-social i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}


/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.gallery-card {
    background: var(--accent-dark);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
    text-align: center;
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gradient);
    transition: height 0.4s ease;
}

.gallery-card:hover::before {
    height: 12px;
}

.gallery-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.gallery-image {
    width: 100%;
    height: 312px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.05);
}

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

.gallery-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.gallery-title a {
    color: inherit;
    text-decoration: none;
}

.gallery-description {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 0.95rem;
}

/* Members Section */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.member-card {
    background: var(--accent-dark);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
    text-align: center;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gradient);
    transition: height 0.4s ease;
}

.member-card:hover::before {
    height: 12px;
}

.member-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.member-image {
    width: 100%;
    height: 224px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.member-card:hover .member-image {
    transform: scale(1.05);
}

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

.member-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.member-social {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.9;
}

.member-social a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.member-social a:hover {
    color: var(--accent-hover);
}

.member-social i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.modal-overlay[style*="display: flex"] {
    opacity: 1;
}

.modal-content {
    background: var(--accent-dark);
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 20px var(--shadow-medium);
    transition: transform 0.3s ease;
}

.modal-content:hover {
    transform: scale(1.02);
}

.modal-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.modal-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.modal-iframe {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    border: none;
    margin-bottom: 1.5rem;
}

.modal-content .btn {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    z-index: 100;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom, rgba(139, 157, 195, 0.1), transparent);
    z-index: -1;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.footer-link:hover {
    color: var(--accent-color);
    background: rgba(139, 157, 195, 0.1);
    box-shadow: 0 0 10px rgba(139, 157, 195, 0.3);
    transform: translateY(-3px);
}

.footer-link-no-hover {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.footer-link-no-hover:hover {
    text-decoration: underline;
}

@keyframes pulse {
    0% { opacity: 0.15; }
    50% { opacity: 0.25; }
    100% { opacity: 0.15; }
}

@keyframes subtlePulse {
    0% { opacity: 0.15; }
    50% { opacity: 0.2; }
    100% { opacity: 0.15; }
}

@keyframes textGlow {
    0% { text-shadow: 0 6px 12px var(--shadow-medium); }
    50% { text-shadow: 0 8px 16px rgba(139, 157, 195, 0.5); }
    100% { text-shadow: 0 6px 12px var(--shadow-medium); }
}

.fade-in {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Parallax Effect for Hero Background */
.hero.parallax {
    background-attachment: fixed;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 2rem;
    }
    .hamburger {
        display: flex;
    }
    
    .hero h1 {
        font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    }
    
    .hero h2 {
        font-size: clamp(1.2rem, 2.8vw, 1.9rem);
    }
    
    .events-grid,
    .recognition-grid,
    .gallery-grid,
    .members-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .hero.parallax {
        background-attachment: scroll;
    }
    
    .hero-logo {
        width: clamp(160px, 22vw, 200px);
    }
    
    .section {
        padding: 6rem 0;
    }
    
    .section-title {
        font-size: clamp(2.2rem, 4vw, 3rem);
    }
    
    .events-grid,
    .recognition-grid,
    .gallery-grid,
    .members-grid,
    .highlights-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .highlights-container {
        flex-direction: column;
        overflow-x: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
    }
    
    .highlight-card {
        min-width: 100%;
        max-width: 100%;
        scroll-snap-align: none;
    }
    
    .highlight-nav {
        display: none;
    }
    
    .event-card,
    .recognition-card,
    .gallery-card,
    .member-card {
        padding: 2rem;
    }
    
    .event-image,
    .highlight-image {
        height: 180px;
    }
    
    .btn {
        padding: 1rem 2.8rem;
        font-size: 0.95rem;
    }
    
    .modal-iframe {
        height: 400px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        justify-content: flex-start;
    }
    
    .timeline-content {
        width: 100%;
        margin-left: 3rem;
        margin-right: 1rem;
    }
    
    .timeline-item[data-side="left"] .timeline-content::before,
    .timeline-item[data-side="right"] .timeline-content::before {
        left: -2.5rem;
        right: auto;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1.2rem;
    }
    
    .container {
        padding: 0 1.2rem;
    }
    
    .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .hero h2 {
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    }
    
    .section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    
    .about-text {
        font-size: 1rem;
        padding: 1.2rem;
    }
    
    .event-title,
    .recognition-title,
    .gallery-title,
    .member-title,
    .highlight-title {
        font-size: 1.6rem;
    }
    
    .event-description,
    .recognition-description,
    .gallery-description,
    .member-social,
    .highlight-description {
        font-size: 0.95rem;
    }
    
    .event-image,
    .highlight-image {
        height: 160px;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
    
    .footer-link {
        padding: 0.4rem 0.8rem;
    }
    
    .modal-title {
        font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    }
    
    .modal-text {
        font-size: clamp(0.9rem, 1.8vw, 1rem);
    }
    
    .modal-iframe {
        height: 350px;
    }
}
