/* ==========================================================================
   Libation Association of Northern Maryland (Libations) - Design Stylesheet
   ========================================================================== */

/* Design Tokens & Custom Properties */
:root {
    /* Theme - Dark Mode (Default) */
    --bg-base: #0a0a0d;
    --bg-surface: #121217;
    --bg-surface-elevated: #1a1a22;
    
    --primary: #f59e0b;       /* Golden Ale */
    --primary-hover: #d97706; /* Darker Amber */
    --primary-light: #fef3c7; /* Beer Foam */
    --primary-glow: rgba(245, 158, 11, 0.15);
    
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #1f2937;
    --text-active: #ffffff;
    --text-gradient-start: #ffffff;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(245, 158, 11, 0.3);
    
    --glass-bg: rgba(18, 18, 23, 0.45);
    --glass-shadow: rgba(0, 0, 0, 0.2);
    --glass-shadow-hover: rgba(0, 0, 0, 0.4);
    
    --countdown-bg: rgba(255, 255, 255, 0.04);
    --bg-footer: #060608;
    --text-footer: #f3f4f6;
    --text-footer-muted: #9ca3af;
    
    --bubble-gradient-start: rgba(255, 255, 255, 0.35); /* More prominent */
    --bubble-gradient-end: rgba(245, 158, 11, 0.22);     /* More prominent */
    --bubble-border: rgba(255, 255, 255, 0.25);          /* More prominent */
    
    --bg-section-fade-start: rgba(10, 10, 13, 0);
    --bg-section-fade-middle: rgba(18, 18, 23, 0.6);
    --bg-section-fade-end: rgba(10, 10, 13, 0);

    --bg-header-scrolled: rgba(10, 10, 13, 0.85);
    --btn-outline-border: rgba(255, 255, 255, 0.2);

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Theme - Light Mode Override */
[data-theme="light"] {
    --bg-base: #faf8f5;        /* Soft Creamy Warm White */
    --bg-surface: #ffffff;     /* Pure White */
    --bg-surface-elevated: #f3eee3; /* Soft warm secondary surface */
    
    --primary: #d97706;       /* Warm Rich Amber */
    --primary-hover: #b45309; /* Deep Brew Amber */
    --primary-light: #fef3c7; /* Golden Cream/Foam accent */
    --primary-glow: rgba(217, 119, 6, 0.12);
    
    --text-main: #2d2925;      /* Charcoal off-black */
    --text-muted: #6b6259;     /* Warm dark gray */
    --text-dark: #1f2937;      /* Focus element text */
    --text-active: #110d0a;    /* Title and heading pure black */
    --text-gradient-start: #1e1b18;
    
    --border-color: rgba(0, 0, 0, 0.08);
    --border-glow: rgba(217, 119, 6, 0.25);
    
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-shadow: rgba(45, 41, 37, 0.05);
    --glass-shadow-hover: rgba(45, 41, 37, 0.1);
    
    --countdown-bg: rgba(0, 0, 0, 0.03);
    --bg-footer: #161412;      /* Stout dark footer in both themes */
    --text-footer: #e7e5e4;
    --text-footer-muted: #a8a29e;
    
    --bubble-gradient-start: rgba(217, 119, 6, 0.35); /* More prominent */
    --bubble-gradient-end: rgba(217, 119, 6, 0.12);   /* More prominent */
    --bubble-border: rgba(217, 119, 6, 0.22);         /* More prominent */
    
    --bg-section-fade-start: rgba(250, 248, 245, 0);
    --bg-section-fade-middle: rgba(243, 238, 227, 0.55);
    --bg-section-fade-end: rgba(250, 248, 245, 0);

    --bg-header-scrolled: rgba(250, 248, 245, 0.85);
    --btn-outline-border: rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Ambient Fermentation Bubbles */
.bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.75;
}

.bubble {
    position: absolute;
    bottom: -50px;
    background: radial-gradient(circle at 30% 30%, var(--bubble-gradient-start), var(--bubble-gradient-end));
    border-radius: 50%;
    animation: float-up 12s infinite linear;
    border: 1px solid var(--bubble-border);
}

@keyframes float-up {
    0% {
        transform: translateY(0) scale(0.6) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-110vh) scale(1.2) rotate(360deg);
        opacity: 0;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: #272733;
    border-radius: 5px;
    border: 2px solid var(--bg-base);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography & Layout Helpers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-active);
    line-height: 1.25;
}

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

p {
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-gradient-start) 20%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.accent-text {
    color: var(--primary);
}

/* Common Section Styles */
.section-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.dark-bg-section {
    background: linear-gradient(180deg, var(--bg-section-fade-start) 0%, var(--bg-section-fade-middle) 50%, var(--bg-section-fade-end) 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1rem;
    background: rgba(245, 158, 11, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin: 1.5rem auto;
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Glassmorphic Cards System */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px var(--glass-shadow);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 40px var(--glass-shadow-hover), 0 0 20px var(--primary-glow);
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #d97706 100%);
    color: #000;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #fbbf24 0%, var(--primary) 100%);
}

.btn-outline {
    background: transparent;
    color: var(--text-active);
    border: 1px solid var(--btn-outline-border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(245, 158, 11, 0.05);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

/* Header Navigation Styling */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background: var(--bg-header-scrolled);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    padding: 1rem 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    height: 48px;
    width: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    transition: var(--transition-smooth);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-active);
    letter-spacing: -0.03em;
}

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

.nav-item {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-item:hover, .nav-item.active {
    color: var(--text-active);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-smooth);
    box-shadow: 0 0 8px var(--primary);
}

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

.cta-nav-btn {
    background: rgba(245, 158, 11, 0.1);
    color: var(--primary);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.cta-nav-btn:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: var(--transition-smooth);
    border-radius: 50%;
}

.theme-toggle:hover {
    color: var(--primary);
    transform: rotate(15deg);
    background: rgba(217, 119, 6, 0.08);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section Styling */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 9rem 2rem 5rem 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    gap: 4rem;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0) 70%);
    pointer-events: none;
    z-index: -1;
    filter: blur(80px);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.aha-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Featured Hero Card */
.hero-featured-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-info-card {
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-color: rgba(245, 158, 11, 0.15);
}

.hero-logo-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.2);
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.hero-logo-img:hover {
    transform: rotate(5deg) scale(1.05);
}

.card-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #000;
    background: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.header-info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.header-info-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.next-meeting-countdown {
    width: 100%;
    background: var(--countdown-bg);
    border-top: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 12px;
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.countdown-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-active);
}

/* Mouse Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.mouse-icon {
    width: 26px;
    height: 44px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
    display: block;
    opacity: 0.6;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.6s infinite ease-in-out;
}

@keyframes scroll-wheel {
    0% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 24px;
        opacity: 0;
    }
    100% {
        top: 8px;
        opacity: 1;
    }
}

/* About Us Section Styling */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-text-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.highlight-quote {
    border-left: 3px solid var(--primary);
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin-top: 2rem;
    position: relative;
}

.quote-icon {
    font-size: 1.5rem;
    color: rgba(245, 158, 11, 0.2);
    position: absolute;
    top: -0.5rem;
    left: 0.5rem;
}

.highlight-quote p {
    font-family: var(--font-body);
    font-style: italic;
    color: var(--text-active);
    font-size: 1.05rem;
    margin: 0;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.icon-box {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-text h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Charter Section Styling */
.charter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.charter-card {
    padding: 3rem 2rem 2.5rem 2rem;
}

.charter-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.75rem;
}

.charter-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.charter-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.charter-number {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    transition: var(--transition-smooth);
}

.charter-card:hover .charter-number {
    color: rgba(245, 158, 11, 0.05);
    transform: scale(1.1);
}

/* Meetings Section Styling */
.meetings-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.meetings-details {
    display: flex;
    flex-direction: column;
}

.highlight-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-color: rgba(245, 158, 11, 0.1);
}

.next-meeting-badge-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.02) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 1.5rem;
    border-radius: 14px;
    margin-bottom: 2.5rem;
}

.next-meeting-badge-main i {
    font-size: 2rem;
    color: var(--primary);
}

.badge-title {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.badge-date {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-active);
}

.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    padding-left: 2.5rem;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.timeline-item {
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: -35px;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--bg-surface-elevated);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-marker i {
    font-size: 0.65rem;
    color: var(--primary);
}

.timeline-content h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

.timeline-note {
    font-size: 0.85rem !important;
    color: rgba(245, 158, 11, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.address-text {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

/* Map Card */
.meetings-map {
    height: 100%;
}

.map-container-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.map-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.map-header i {
    font-size: 1.5rem;
    color: var(--primary);
}

.map-header h5 {
    font-size: 1.1rem;
}

.map-header p {
    font-size: 0.8rem;
    margin: 0;
}

.map-iframe-wrapper {
    flex-grow: 1;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.map-footer {
    margin-top: 1.25rem;
    display: flex;
    justify-content: flex-end;
}

/* Styles & Collaborations */
.collab-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.collab-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.collab-badge {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--primary);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.collab-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
}

.collab-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.collab-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.4;
}

.collab-list li i {
    color: var(--primary);
    font-size: 0.95rem;
    margin-top: 0.2rem;
}

.success-banner {
    width: 100%;
    margin-top: auto;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--primary);
    padding: 1.25rem;
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.success-banner i {
    font-size: 1.3rem;
    color: var(--primary);
}

.success-banner span {
    color: var(--text-active);
    font-weight: 500;
}

/* Guild & Social Grid */
.guild-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.community-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 3rem;
}

.community-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.25rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.guild-logo-placeholder {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-active);
}

.fb-icon-style {
    background: rgba(24, 119, 242, 0.08);
    border: 1px solid rgba(24, 119, 242, 0.2);
    color: #1877f2;
}

.community-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.community-card p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 420px;
}

/* Footer Section */
.site-footer {
    position: relative;
    z-index: 1;
    background: var(--bg-footer);
    border-top: 1px solid var(--border-color);
    padding: 5rem 2rem 3rem 2rem;
}

.footer-top {
    max-width: 1280px;
    margin: 0 auto 3rem auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.footer-brand h4 {
    font-size: 1.25rem;
    color: var(--text-footer);
}

.footer-brand p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-muted);
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-footer-muted);
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright-text {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-footer-muted);
}

.responsibility-text {
    font-size: 0.85rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.responsibility-text i {
    color: rgba(255, 255, 255, 0.4);
}

/* Animations Trigger System (JS-driven) */
.card-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Slide in animation utility rules */
.animate-fade-in {
    animation: fade-in 1s forwards ease-out;
}
.animate-slide-up {
    animation: slide-up 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-fade-in-right {
    animation: fade-in-right 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Tablet Layout */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding-top: 10rem;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-featured-card {
        order: -1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .meetings-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .collab-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .guild-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .section-container {
        padding: 5rem 1.5rem;
    }
    
    /* Mobile Menu Drawer Toggle */
    .mobile-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-surface);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        padding: 4rem 2rem;
        transition: var(--transition-smooth);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-item {
        font-size: 1.15rem;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
