/* Zehn Website Styles - Contemporary Mehndi-Inspired Design */

:root {
    --maroon: #800020;
    --soft-beige: #F5F0E8;
    --sage-green: #87A96B;
    --dark-green: #4A5D3A;
    --cream: #FDF8F3;
    --charcoal: #2C2C2C;
    --gold-accent: #B8860B;
    --light-gray: #F8F8F8;
    --border-gray: #E0E0E0;
    --white: #FFFFFF;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    --gradient-primary: linear-gradient(135deg, var(--maroon) 0%, var(--dark-green) 100%);
    --gradient-accent: linear-gradient(45deg, var(--gold-accent), #DAA520);
}

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

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
}

/* Typography - Modern & Clean */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

a {
    color: var(--maroon);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--dark-green);
}

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

.focus-visible, *:focus-visible {
    outline: 3px solid var(--gold-accent);
    outline-offset: 2px;
    border-radius: 4px;
}

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

/* Mehndi-Inspired Patterns */
.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--maroon) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, var(--sage-green) 1px, transparent 1px),
        linear-gradient(45deg, transparent 40%, var(--gold-accent) 40%, var(--gold-accent) 60%, transparent 60%);
    background-size: 60px 60px, 40px 40px, 80px 80px;
    background-position: 0 0, 20px 20px, 40px 40px;
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
}

.geometric-border {
    position: relative;
    overflow: hidden;
}

.geometric-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    background-size: 20px 4px;
    background-image: repeating-linear-gradient(
        90deg,
        var(--gold-accent) 0px,
        var(--gold-accent) 10px,
        var(--maroon) 10px,
        var(--maroon) 20px
    );
}

/* Header - Modern with Geometric Elements */
/* Enhanced Header with Mehndi Spiral Pattern */
/* Header - Proper Layout */
header {
    background: var(--gradient-warm);
    border-bottom: 6px solid var(--maroon);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

/* Mehndi Spiral Pattern Background */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml;utf8,<svg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'><g fill='none' stroke='%23800020' stroke-width='1.6' opacity='0.10'><path d='M40 140c10-20 40-35 60-30 16 4 25 18 21 30-5 16-26 19-36 5-7-10-4-24 10-35' stroke-linecap='round'/></g><g fill='%2387A96B' opacity='0.7'><path d='M92 95c6 2 10 6 12 12-6 0-10-2-12-12z'/><path d='M118 122c6 2 10 6 12 12-6 0-10-2-12-12z'/></g><circle cx='58' cy='126' r='2' fill='%23C4A647' opacity='0.45'/></svg>");
    background-size: 150px 150px;
    background-position: 0 0, 140px 140px, 200px 0;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}

.header-top {
    position: relative;
    z-index: 2;
}

.header-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
}

.accessibility-controls {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    border: 2px solid var(--maroon);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.language-toggle:hover {
    background: var(--maroon);
    color: white;
    transform: scale(1.05);
}

.lang-option {
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.lang-option.active {
    background: var(--maroon);
    color: white;
}

.language-toggle:hover .lang-option.active {
    background: white;
    color: var(--maroon);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .logo-section {
        flex-direction: column;
        align-items: center;
    }
    
    .accessibility-controls {
        justify-content: center;
    }
}

/* Logo with Icon */
.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-icon {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--maroon);
    background: white;
    padding: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-text {
    font-family: 'Pacifico', cursive;  /* or 'Great Vibes', 'Dancing Script', 'Satisfy' */
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--maroon);
    letter-spacing: 0.05em;  /* Script fonts need more spacing */
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.logo-link:hover .logo-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.3);
}

.logo-link:hover .logo-text {
    color: var(--dark-green);
}

/* Responsive sizing */
@media (max-width: 768px) {
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
}
.tagline {
    font-family: 'Pacifico', cursive;  /* or 'Great Vibes', 'Dancing Script', 'Satisfy' */
    font-size: 2rem;
    color: var(--dark-green);
    font-style: italic;
    font-weight: 600;
    border-left: 5px solid var(--sage-green);
    padding: 0.8rem 0 0.5rem 0.5rem !important;
    margin-left: 2.5rem;
    position: relative;
    line-height: 1.8 !important;
}
.accessibility-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.accessibility-btn {
    background: var(--white);
    border: 2px solid var(--border-gray);
    padding: 0.7rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

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

/* Navigation - Clean & Modern */
nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-gray);
    position: relative;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 1rem 0;
    color: var(--charcoal);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    padding: 1.2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-item a {
    color: var(--charcoal);
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: block;
    font-size: 0.95rem;
}

.nav-item a:hover,
.nav-item a.active {
    background: var(--soft-beige);
    color: var(--maroon);
    transform: translateY(-1px);
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0.3rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 1px;
}

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

/* Hero Section - Bold & Contemporary */
.hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.03) 30%, rgba(255,255,255,0.03) 70%, transparent 70%);
    background-size: 100px 100px, 60px 60px, 120px 120px;
    animation: heroPattern 30s linear infinite;
}

@keyframes heroPattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-120px) translateY(-120px); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

#rotatingQuote {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-style: italic;
  margin: 2.5rem 0;
  min-height: 100px;
  border-left: 4px solid var(--gold-accent);
  padding-left: 2rem;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInOut 6s linear infinite;
  animation-play-state: running;
}

@keyframes fadeInOut {
  0%, 15%   { opacity: 0; transform: translateY(20px); }
  25%, 75%  { opacity: 1; transform: translateY(0); }
  85%, 100% { opacity: 0; transform: translateY(-20px); }
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin: 2.5rem 0;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 300;
    max-width: 700px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Modern Button System */
.btn {
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--maroon);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--maroon);
    border: 2px solid var(--maroon);
    padding: 1rem 2rem;
}

.btn-outline:hover {
    background: var(--maroon);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 0, 32, 0.3);
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border: 1px solid var(--border-gray);
    background: var(--white);
    color: var(--charcoal);
    margin-right: 0.5rem;
    margin-top: 0.5rem;
    border-radius: 8px;
}

.btn-small:hover {
    background: var(--soft-beige);
    border-color: var(--maroon);
    transform: translateY(-1px);
}

/* Sections */
.section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--maroon);
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* Featured Section - Contemporary Cards */
.featured {
    padding: 6rem 2rem;
    background: var(--light-gray);
    position: relative;
}

.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.02;
    background-image: 
        radial-gradient(circle at 30% 30%, var(--maroon) 1px, transparent 1px),
        radial-gradient(circle at 70% 70%, var(--sage-green) 1px, transparent 1px);
    background-size: 80px 80px, 120px 120px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

/* Modern Card Design with Mehndi-Inspired Elements */
.featured-card,
.essay-card,
.poem-card,
.interview-card {
    background: var(--soft-beige) !important;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(128, 0, 32, 0.1);
}

.featured-card::before,
.essay-card::before,
.poem-card::before,
.interview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0.8;
}

.featured-card:hover,
.essay-card:hover,
.poem-card:hover,
.interview-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.card-content {
    padding: 2.5rem;
    position: relative;
}

.card-type {
    color: var(--sage-green);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(135, 169, 107, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(135, 169, 107, 0.2);
}

.card-title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.card-title a {
    color: var(--maroon);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: var(--dark-green);
}

.card-excerpt {
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    opacity: 0.9;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--dark-green);
}

.card-author {
    font-style: italic;
    font-weight: 500;
}

.card-date {
    opacity: 0.7;
    font-weight: 400;
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.view-all-section {
    text-align: center;
    margin-top: 4rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mission Preview - Contemporary Layout */
.mission-preview {
    padding: 6rem 2rem;
    background: var(--white);
    position: relative;
}

.mission-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.mission-text h2 {
    color: var(--maroon);
    margin-bottom: 2rem;
    font-weight: 800;
}

.mission-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--charcoal);
    opacity: 0.9;
}

.mission-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat {
    text-align: center;
    background: var(--soft-beige);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(128, 0, 32, 0.1);
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--maroon);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark-green);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Newsletter - Modern Design */
.newsletter {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--white) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--gold-accent) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.newsletter p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

.newsletter-form button {
    padding: 1.2rem 2rem;
    background: var(--white);
    color: var(--maroon);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--gold-accent);
    color: var(--white);
    transform: translateY(-2px);
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1.5rem;
}

/* Footer - Contemporary Maroon Design */
footer {
    background: var(--maroon);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: 
        linear-gradient(45deg, transparent 40%, var(--gold-accent) 40%, var(--gold-accent) 60%, transparent 60%),
        radial-gradient(circle at 30% 70%, var(--white) 1px, transparent 1px);
    background-size: 40px 40px, 60px 60px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    opacity: 0.9;
    padding: 0.3rem 0;
    font-weight: 400;
}

.footer-section a:hover {
    color: var(--gold-accent);
    opacity: 1;
    transform: translateX(5px);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.05rem;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--gold-accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.8;
    color: var(--white);
}

.footer-bottom a {
    color: var(--gold-accent);
    font-weight: 500;
}

/* Lightbox - Modern Design */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: var(--maroon);
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--gold-accent);
    transform: scale(1.1);
}

/* Page Layouts - Contemporary */
.page-header {
    background: var(--soft-beige);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 3px solid var(--maroon);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 40% 60%, var(--maroon) 2px, transparent 2px),
        linear-gradient(30deg, transparent 45%, var(--sage-green) 45%, var(--sage-green) 55%, transparent 55%);
    background-size: 100px 100px, 80px 80px;
}

.page-header h1 {
    color: var(--maroon);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--dark-green);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.page-content {
    padding: 5rem 2rem;
    background: var(--white);
}

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

.content-wrapper h2 {
    color: var(--maroon);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-wrapper h3 {
    color: var(--dark-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Form Styles - Modern Design */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-note {
    font-size: 0.9rem;
    color: var(--dark-green);
    margin-top: 0.8rem;
    opacity: 0.8;
}

/* Article Styles - Clean Typography */
.article-header {
    background: var(--white);
    padding: 4rem 2rem;
    border-bottom: 1px solid var(--border-gray);
}

.article-meta {
    text-align: center;
    margin-bottom: 2.5rem;
}

.article-type {
    color: var(--sage-green);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(135, 169, 107, 0.1);
    border-radius: 20px;
}

.article-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--maroon);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 800;
    line-height: 1.2;
}

.article-author {
    font-size: 1.15rem;
    color: var(--dark-green);
    font-style: italic;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.article-date {
    color: var(--charcoal);
    opacity: 0.7;
    font-size: 1rem;
}

.article-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 4rem 2rem;
    font-size: 1.15rem;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 2rem;
}

.article-content blockquote {
    border-left: 4px solid var(--sage-green);
    padding-left: 2.5rem;
    margin: 3rem 0;
    font-style: italic;
    background: var(--soft-beige);
    padding: 2rem 2.5rem;
    border-radius: 0 12px 12px 0;
    font-size: 1.2rem;
    position: relative;
}

.pull-quote {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--maroon);
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    border-top: 3px solid var(--sage-green);
    border-bottom: 3px solid var(--sage-green);
    font-weight: 300;
    line-height: 1.4;
}

/* Grid Systems for Content Pages */
.essays-grid,
.poetry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
}

.essays-list,
.poetry-featured {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.interviews-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2.5rem;
}

.interviews-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* High Contrast Mode */
.high-contrast {
    filter: contrast(150%) brightness(120%);
}

.high-contrast * {
    text-shadow: none !important;
    box-shadow: none !important;
}

/* Contemporary Responsive Design */
@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mission-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .logo {
        font-size: 2.2rem;
    }
    
    .tagline {
        border-left: none;
        border-top: 3px solid var(--sage-green);
        padding-left: 0;
        padding-top: 1rem;
        margin-top: 1rem;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-medium);
        padding: 1.5rem 2rem;
        display: none;
        border-radius: 0 0 16px 16px;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .hero {
        padding: 4rem 1rem;
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
    }
    
    .featured-grid,
    .essays-grid,
    .poetry-grid,
    .interviews-cards {
        grid-template-columns: 1fr;
    }
    
    .view-all-section {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .article-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .page-header {
        padding: 3rem 1rem;
    }
    
    .page-header h1 {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }
    
    .section-content,
    .content-wrapper {
        padding: 0 1rem;
    }
    
    .card-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .card-content {
        padding: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .accessibility-controls {
        justify-content: center;
        gap: 0.3rem;
    }
    
    .accessibility-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

/* Animation Performance Optimizations */
@media (prefers-reduced-motion: no-preference) {
    .featured-card,
    .essay-card,
    .poem-card,
    .interview-card {
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .btn {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-item a {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* Print Styles */
@media print {
    .header-content,
    nav,
    .cta-buttons,
    .newsletter,
    footer,
    .accessibility-controls {
        display: none !important;
    }
    
    .hero {
        background: none !important;
        color: var(--charcoal) !important;
        padding: 2rem 0 !important;
    }
    
    .page-content,
    .article-content {
        padding: 1rem 0 !important;
    }
    
    .featured-card,
    .essay-card,
    .poem-card,
    .interview-card {
        box-shadow: none !important;
        border: 1px solid var(--border-gray) !important;
        break-inside: avoid;
    }
}