/* ===================================================================
   ENTREPRENEUR CLUB - UNIFIED STYLES
   Centralized CSS for all pages: index.html, events.html, founder-retreat.html, 404.html
   =================================================================== */

/* ===================================================================
   1. CSS VARIABLES & RESET
   =================================================================== */

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #151515;
    --tertiary-dark: #2a2a2a;
    --orange-primary: #ff6b35;
    --orange-secondary: #ff8c42;
    --orange-accent: #ffa366;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
}

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

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

/* ===================================================================
   2. LAYOUT UTILITIES
   =================================================================== */

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

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

.highlight {
    color: var(--orange-primary);
}

/* ===================================================================
   3. NAVIGATION - iOS 24 Style: Transparent → Glassmorphism on Scroll
   =================================================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid transparent;
    box-shadow: none;
}

/* Glassmorphism State on Scroll */
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(30px) saturate(2);
    -webkit-backdrop-filter: blur(30px) saturate(2);
    border-bottom: 1px solid rgba(255, 107, 53, 0.18);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 107, 53, 0.12),
        inset 0 -1px 0 rgba(255, 107, 53, 0.06);
}

.navbar.scrolled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.04) 0%, 
        rgba(255, 140, 66, 0.025) 50%,
        rgba(255, 163, 102, 0.015) 100%);
    pointer-events: none;
    opacity: 0;
    animation: fadeInGradient 0.5s ease forwards;
}

@keyframes fadeInGradient {
    to { opacity: 1; }
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-self: start;
}

.logo img {
    height: 36px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo span {
    color: var(--orange-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-self: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--orange-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-primary);
    transition: width 0.3s ease;
}

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

/* Premium Dropdown Menus */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(42, 42, 42, 0.95);
    backdrop-filter: blur(25px) saturate(1.5);
    -webkit-backdrop-filter: blur(25px) saturate(1.5);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 200px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.5rem;
}

.dropdown-link:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange-primary);
    transform: translateX(4px);
}

.nav-cta {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    justify-self: end;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.nav-cta-mobile {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    justify-self: end;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===================================================================
   4. HERO SECTIONS
   =================================================================== */

/* Main Hero Section - Ultra Premium Design */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

/* Floating Elements - Startup Spirit */
.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.05));
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
    top: 15%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: var(--orange-primary);
    border-radius: 12px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.shape-2 {
    top: 30%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: var(--orange-secondary);
    border-radius: 50%;
    animation-delay: 2s;
}

.shape-3 {
    bottom: 25%;
    left: 10%;
    width: 80px;
    height: 80px;
    border: 3px solid var(--orange-accent);
    border-radius: 50%;
    animation-delay: 4s;
}

.shape-4 {
    top: 60%;
    right: 25%;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--orange-primary), var(--orange-secondary));
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 1s;
}

.shape-5 {
    top: 80%;
    left: 20%;
    width: 35px;
    height: 35px;
    background: var(--orange-accent);
    border-radius: 8px;
    transform: rotate(25deg);
    animation-delay: 3s;
}

.shape-6 {
    top: 10%;
    right: 30%;
    width: 70px;
    height: 70px;
    border: 2px solid var(--orange-secondary);
    border-radius: 12px;
    transform: rotate(45deg);
    animation-delay: 5s;
}

.shape-7 {
    bottom: 15%;
    right: 10%;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--orange-secondary), var(--orange-accent));
    border-radius: 50%;
    animation-delay: 2.5s;
}

.startup-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.startup-icon {
    position: absolute;
    color: var(--orange-primary);
    opacity: 0.15;
    font-size: 2rem;
    animation: floatIcon 10s ease-in-out infinite;
}

.icon-1 { top: 20%; left: 8%; animation-delay: 0s; }
.icon-2 { top: 15%; right: 12%; animation-delay: 3s; }
.icon-3 { bottom: 30%; left: 15%; animation-delay: 6s; }
.icon-4 { bottom: 20%; right: 20%; animation-delay: 9s; }
.icon-5 { top: 45%; left: 3%; animation-delay: 1.5s; }
.icon-6 { top: 65%; right: 8%; animation-delay: 4.5s; }
.icon-7 { top: 75%; left: 25%; animation-delay: 7s; }
.icon-8 { top: 35%; right: 5%; animation-delay: 2s; }

/* Hero Content Enhanced */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    margin-bottom: 3rem;
    position: relative;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--orange-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    position: relative;
    text-align: center;
}

.underlined-text {
    text-decoration: underline;
    text-decoration-color: var(--orange-primary);
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
    text-decoration-style: solid;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 0 2rem;
    text-align: center;
}

.hero-text p::before,
.hero-text p::after {
    content: '"';
    position: absolute;
    font-size: 3rem;
    color: var(--orange-primary);
    opacity: 0.3;
    font-family: serif;
}

.hero-text p::before {
    top: -10px;
    left: 0;
}

.hero-text p::after {
    bottom: -20px;
    right: 0;
}

/* Hero Features */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    min-width: 120px;
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange-primary);
    display: block;
}

.hero-stat-icon {
    font-size: 2rem;
    color: var(--orange-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Enhanced CTA Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* ===================================================================
   5. ANIMATIONS
   =================================================================== */

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

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-15px) rotate(10deg); opacity: 0.2; }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.15; }
    50% { transform: translateY(-10px) scale(1.1); opacity: 0.25; }
}

/* ===================================================================
   6. SECTIONS
   =================================================================== */

.section {
    padding: 5rem 0;
    position: relative;
}

.section-dark {
    background: var(--primary-dark);
}

.section-light {
    background: var(--secondary-dark);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--orange-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

/* ===================================================================
   7. ABOUT SECTION
   =================================================================== */

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

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--orange-primary);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about-visual {
    background: var(--tertiary-dark);
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--orange-primary);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

/* ===================================================================
   8. EVENTS SECTIONS
   =================================================================== */

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: 100vh;
}

/* Events Grid Section */
.events-section {
    padding: 2.8rem 0 4.2rem;
    background: var(--secondary-dark);
}

/* Events Grid - Ultra Premium */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.event-card {
    background: var(--tertiary-dark);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.event-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--orange-primary);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.25);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.05) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
}

.event-card:hover::before {
    opacity: 1;
}

.event-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--orange-primary);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

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

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

.event-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-upcoming {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.status-registration {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.status-full {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
}

.event-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.event-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.event-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.event-detail i {
    color: var(--orange-primary);
    width: 16px;
    text-align: center;
}

.event-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.event-button {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange-primary);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--orange-primary);
}

.btn-disabled {
    background: rgba(107, 114, 128, 0.2);
    color: var(--text-muted);
    cursor: not-allowed;
}

/* ===================================================================
   9. COMMUNITIES SECTION
   =================================================================== */

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

.community-card {
    background: var(--tertiary-dark);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.community-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
}

.community-icon {
    font-size: 3rem;
    color: var(--orange-primary);
    margin-bottom: 1rem;
}

.community-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.community-card p {
    color: var(--text-secondary);
}

/* ===================================================================
   10. PARTNERS SECTION
   =================================================================== */

.partners-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    min-height: 80px;
    transition: all 0.3s ease;
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-3px);
}

.partner-placeholder {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.partner-card:hover .partner-placeholder {
    color: var(--orange-primary);
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo-img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.partner-card:hover .partner-logo-img {
    transform: scale(1.05);
    opacity: 1;
}

/* Sponsors Section */
.sponsors-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.sponsor-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.sponsor-card:hover {
    transform: translateY(-5px);
}

.sponsor-logo-img {
    width: 200px;
    height: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.sponsor-card:hover .sponsor-logo-img {
    transform: scale(1.1);
    opacity: 1;
}

/* New smaller class for partner logos */
.partner-logo-small {
    width: 120px;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.partner-card:hover .partner-logo-small {
    transform: scale(1.05);
    opacity: 1;
}

/* Section Headers */
.partners-subheader {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--orange-primary);
    margin-bottom: 1rem;
    text-align: center;
}

/* ===================================================================
   11. COMMITTEE SECTION
   =================================================================== */

.committee {
    background-image: url('https://cdn.prod.website-files.com/634fe276f22c3bb17e22cf5e/6705106ec226120844527c5c_Capture%20d%E2%80%99e%CC%81cran%202024-10-08%20a%CC%80%2012.58.26.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.committee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(42, 42, 42, 0.7) 100%);
}

.committee-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.committee-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 700;
}

/* ===================================================================
   12. FOUNDER'S RETREAT SPECIFIC STYLES
   =================================================================== */

/* Main container */
.fr-main {
    margin-top: 80px; /* Account for fixed navbar */
}

/* Hero Section */
.fr-hero {
    padding: 6rem 0;
}

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

.fr-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--orange-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.fr-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--orange-primary);
    margin-bottom: 1rem;
}

.fr-hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.fr-hero-image {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.fr-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

/* Features Grid */
.fr-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.fr-feature-card {
    background: var(--tertiary-dark);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.fr-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange-primary);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.fr-feature-icon {
    font-size: 3rem;
    color: var(--orange-primary);
    margin-bottom: 1.5rem;
}

.fr-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.fr-feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Premium Location Section with Image Left & Text Right */
.fr-location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.fr-alps-image-left {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2);
    position: relative;
    height: 450px;
}

.fr-alps-image-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /***background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 140, 66, 0.08) 100%);***/
    z-index: 1;
    border-radius: 20px;
}

.fr-alps-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.fr-alps-image-left:hover img {
    transform: scale(1.05);
}

.fr-location-text {
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fr-location-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.fr-location-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

/* Premium Testimonials Grid */
.fr-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.fr-testimonial-card {
    background: var(--tertiary-dark);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.fr-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fr-testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
}

.fr-testimonial-card:hover::before {
    opacity: 1;
}

.fr-testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--orange-primary);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 2;
}

.fr-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fr-testimonial-card:hover .fr-testimonial-avatar img {
    transform: scale(1.1);
}

.fr-testimonial-content {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.fr-testimonial-content p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    padding: 0 1rem;
}

.fr-testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--orange-primary);
    position: absolute;
    top: -15px;
    left: -10px;
    font-family: serif;
    opacity: 0.6;
}

.fr-testimonial-content p::after {
    content: '"';
    font-size: 3rem;
    color: var(--orange-primary);
    position: absolute;
    bottom: -25px;
    right: -10px;
    font-family: serif;
    opacity: 0.6;
}

.fr-testimonial-author {
    text-align: center;
    position: relative;
    z-index: 2;
}

.fr-testimonial-author h4 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.fr-testimonial-role {
    color: var(--orange-primary);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Premium CTA Section with Background */
.fr-cta-background {
    background-image: url('https://cdn.prod.website-files.com/634fe276f22c3bb17e22cf5e/6705106ec226120844527c5c_Capture%20d%E2%80%99e%CC%81cran%202024-10-08%20a%CC%80%2012.58.26.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 8rem 0;
}

.fr-cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.85) 0%, 
        rgba(42, 42, 42, 0.75) 50%,
        rgba(255, 107, 53, 0.1) 100%);
    z-index: 1;
}

.fr-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 3rem 2rem;
    background: rgba(42, 42, 42, 0.3);
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(20px);
}

.fr-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--orange-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.fr-cta-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.fr-cta-button {
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    transform: scale(1.05);
    transition: all 0.4s ease;
}

.fr-cta-button:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.5);
}

/* ===================================================================
   13. 404 ERROR PAGE STYLES
   =================================================================== */

/* 404 Page Specific Body */
body.error-page-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 404 Page Styles */
.error-page {
    text-align: center;
    position: relative;
    padding: 2rem 0;
}

/* Background Elements - Same as your site */
.error-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
}

/* Error Content */
.error-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--orange-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.error-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* Home Button - Same style as your CTA buttons */
.home-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.home-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.home-button:hover::before {
    left: 100%;
}

.home-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.home-button i {
    font-size: 1rem;
}

/* Logo Section */
.error-logo {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.error-logo img {
    height: 48px;
    width: auto;
    filter: brightness(0.8);
}

/* Additional Info */
.error-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.error-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

/* ===================================================================
   14. FOOTER
   =================================================================== */

.footer {
    background: var(--primary-dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

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

.footer-section h4 {
    color: var(--orange-primary);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--orange-primary)!important;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--orange-primary);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 25px;
    background: var(--secondary-dark);
    color: var(--text-primary);
    outline: none;
}

.newsletter-input:focus {
    border-color: var(--orange-primary);
}

.newsletter-btn {
    background: var(--orange-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--orange-secondary);
}

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

/* ===================================================================
   15. SMOOTH ANIMATIONS & SCROLLING
   =================================================================== */

/* Smooth Animations - No Flicker */
.section {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.fade-in {
    opacity: 0;
    transform: translateY(20px);
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--orange-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange-secondary);
}

/* Animation for scroll-triggered effects */
@keyframes fr-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fr-fade-in-up {
    animation: fr-fadeInUp 0.6s ease forwards;
}

/* Lazy loading optimization */
.fr-hero-image img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

.fr-hero-image img[loading="lazy"].loaded {
    opacity: 1;
}

/* ===================================================================
   16. RESPONSIVE DESIGN
   =================================================================== */

@media (max-width: 768px) {
    .nav-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        padding: 1rem 0;
        gap: 1rem;
    }

    .hamburger {
        display: flex;
        order: 3;
        z-index: 1001;
        position: relative;
        padding: 8px;
        border-radius: 8px;
        background: rgba(255, 107, 53, 0.1);
        border: 1px solid rgba(255, 107, 53, 0.2);
        transition: all 0.3s ease;
        margin-right: -5px; /* Move closer to the right edge */
        justify-self: end;
    }

    .hamburger:hover {
        background: rgba(255, 107, 53, 0.2);
        border-color: var(--orange-primary);
        transform: scale(1.05);
    }

    .hamburger.active {
        background: var(--orange-primary);
        border-color: var(--orange-primary);
    }

    .hamburger.active span {
        background: white;
    }

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

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

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

    .nav-menu, .nav-cta {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        position: fixed;
        left: 0;
        top: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(30px) saturate(1.8);
        -webkit-backdrop-filter: blur(30px) saturate(1.8);
        width: 100%;
        height: 100vh;
        text-align: left;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 100px 0 2rem;
        border: none;
        box-shadow: none;
        z-index: 1000;
        overflow-y: auto;
    }

    /* Mobile Navigation Links - Unified Style */
    .nav-menu.active .nav-link {
        display: block;
        padding: 1.2rem 2rem;
        text-align: left;
        width: 100%;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--text-secondary);
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 107, 53, 0.08);
        position: relative;
        background: transparent;
    }

    .nav-menu.active .nav-link:hover {
        color: var(--orange-primary);
        background: rgba(255, 107, 53, 0.05);
        padding-left: 2.5rem;
    }

    /* ONLY direct nav-links with .active class should show active state on mobile */
    .nav-menu.active .nav-link.active:not(.dropdown-toggle) {
        color: var(--orange-primary) !important;
        background: rgba(255, 107, 53, 0.1) !important;
        font-weight: 600;
    }

    /* Ensure all other nav-links stay neutral */
    .nav-menu.active .nav-link:not(.active):not(.dropdown-toggle):not(.nav-cta-mobile) {
        color: var(--text-secondary) !important;
        background: transparent !important;
    }

    .nav-menu.active .nav-link::after {
        display: none;
    }

    /* Mobile Dropdown Styles */
    .nav-dropdown {
        width: 100%;
        border-bottom: 1px solid rgba(255, 107, 53, 0.08);
    }

    .nav-dropdown:last-child {
        border-bottom: none;
    }

    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.2rem 2rem;
        width: 100%;
        text-align: left;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--text-secondary);
        transition: all 0.3s ease;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .dropdown-toggle:hover {
        color: var(--orange-primary);
        background: rgba(255, 107, 53, 0.05);
        padding-left: 2.5rem;
    }
    
    .dropdown-toggle i {
        font-size: 0.9rem;
        transition: transform 0.3s ease;
        color: var(--orange-primary);
    }

    /* Mobile: dropdown-toggle should NEVER appear active, only when user opens it */
    .nav-menu.active .dropdown-toggle.active {
        color: var(--text-secondary) !important;
        background: transparent !important;
    }

    /* Only when user actively opens the dropdown should it appear active */
    .nav-dropdown.active .dropdown-toggle {
        color: var(--orange-primary);
        background: rgba(255, 107, 53, 0.1);
    }

    .nav-dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        transform: none;
        background: rgba(42, 42, 42, 0.3);
        backdrop-filter: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .dropdown-link {
        display: block;
        margin: 0;
        border-radius: 0;
        padding: 1rem 3rem;
        text-align: left;
        font-size: 1rem;
        font-weight: 400;
        color: var(--text-muted);
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 107, 53, 0.05);
        background: transparent;
    }

    .dropdown-link:last-child {
        border-bottom: none;
    }

    .dropdown-link:hover {
        color: var(--orange-primary);
        background: rgba(255, 107, 53, 0.08);
        padding-left: 3.5rem;
        transform: none;
    }

    .dropdown-link.active {
        color: var(--orange-primary);
        background: rgba(255, 107, 53, 0.1);
        font-weight: 500;
    }

    /* Mobile CTA Button */
    .nav-menu.active .nav-cta-mobile {
        display: block;
        margin: 2rem;
        padding: 1.2rem 2rem;
        background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
        color: white;
        text-decoration: none;
        border-radius: 25px;
        font-weight: 600;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        font-size: 1.1rem;
        border: none;
    }

    .nav-menu.active .nav-cta-mobile:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        background: linear-gradient(135deg, var(--orange-secondary) 0%, var(--orange-accent) 100%);
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .hero-stat {
        min-width: 100px;
        padding: 1rem;
    }

    .startup-icon {
        font-size: 1.5rem;
    }

    .floating-shape {
        opacity: 0.05;
    }

    .hero-text p::before,
    .hero-text p::after {
        display: none;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title h1 {
        font-size: 2.5rem;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .committee {
        background-attachment: scroll;
    }

    /* Committee responsive improvements */
    .committee-content {
        padding: 1.5rem;
        max-width: 100%;
    }

    .committee-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }

    /* Founder's Retreat Mobile */
    .fr-hero-title {
        font-size: 2.5rem;
    }
    
    .fr-hero-subtitle {
        font-size: 1.3rem;
    }
    
    .fr-hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .fr-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fr-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fr-feature-card,
    .fr-testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .fr-location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fr-location-text {
        padding-left: 0;
        order: 1;
    }
    
    .fr-alps-image-left {
        height: 300px;
        order: 2;
    }
    
    .fr-location-text h2 {
        font-size: 2rem;
    }
    
    .fr-location-text p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .fr-cta-background {
        background-attachment: scroll;
        padding: 5rem 0;
    }
    
    .fr-cta-content {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }
    
    .fr-cta-content h2 {
        font-size: 2.2rem;
    }
    
    .fr-cta-content p {
        font-size: 1.1rem;
    }
    
    .fr-testimonial-avatar {
        width: 70px;
        height: 70px;
    }

    /* 404 Page Mobile */
    .error-code {
        font-size: 6rem;
    }

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

    .error-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .home-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .committee-content {
        padding: 1rem;
    }

    .committee-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.5;
        padding: 0 0.25rem;
        word-spacing: 2px;
    }

    .hero-content {
        padding: 0 1rem;
    }

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

    .event-content {
        padding: 1.5rem;
    }

    .event-actions {
        flex-direction: column;
    }

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

    /* Founder's Retreat Mobile */
    .fr-hero {
        padding: 4rem 0;
    }
    
    .fr-hero-title {
        font-size: 2rem;
    }
    
    .fr-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .fr-hero-description {
        font-size: 1rem;
    }
    
    .fr-feature-card,
    .fr-testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .fr-alps-image-left {
        height: 250px;
    }
    
    .fr-location-text h2 {
        font-size: 1.8rem;
    }
    
    .fr-location-text p {
        font-size: 1rem;
    }
    
    .fr-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .fr-cta-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .fr-testimonial-avatar {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .fr-testimonial-content p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .fr-testimonial-content p::before,
    .fr-testimonial-content p::after {
        font-size: 2rem;
    }

    /* 404 Page Mobile */
    .error-code {
        font-size: 4.5rem;
    }

    .error-title {
        font-size: 1.8rem;
    }

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

    .home-button {
        padding: 0.9rem 1.8rem;
    }

    .error-content {
        padding: 1rem;
    }
}

@media (max-width: 320px) {
    .committee-content h2 {
        font-size: 1.3rem;
        line-height: 1.6;
        word-spacing: 1px;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    .floating-shape {
        opacity: 0.05;
    }

    .hero-text p::before,
    .hero-text p::after {
        display: none;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .committee {
        background-attachment: scroll;
    }
}
