/* AMIMUN Newsletter - Minimal Design System */

/* CSS Variables - Beautiful, Aesthetic Color Palette */
:root {
    /* Primary Colors - Custom Theme */
    --primary-navy: #05102d;
    --primary-cream: #f3d8ce;
    --primary-white: #f5ebe3;
    /* change above for all whites */
    /* Accent Colors - Custom Palette */
    --accent-sage: #0b221a;
    --accent-gold: #6f7667;
    --accent-coral: #c7d3e7;
    --accent-lavender: #ffffff;

    /* Text Colors - Perfect Contrast */
    --text-dark: #05102d;
    --text-medium: #5a5b7a;
    --text-light: #6f7667;
    --text-white: #ffffff;
    /* change above for all whites */
    /* Background Colors */
    --bg-primary: #f3d8ce;
    --bg-secondary: #e8cdc2;
    --bg-dark: #05102d;
    --bg-overlay: rgba(5, 16, 45, 0.9);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0b221a 0%, #0a1c15 100%);
    --gradient-accent: linear-gradient(135deg, #6f7667 0%, #5a5c54 100%);
    --gradient-overlay: linear-gradient(
        135deg,
        rgba(5, 16, 45, 0.95) 0%,
        rgba(11, 34, 26, 0.1) 100%
    );

    /* Shadows */
    --shadow-soft: 0 2px 20px rgba(5, 16, 45, 0.08);
    --shadow-medium: 0 8px 40px rgba(5, 16, 45, 0.12);
    --shadow-strong: 0 16px 60px rgba(5, 16, 45, 0.15);

    /* Typography */
    --font-primary: "ITC Benguiat", Georgia, serif;
    --font-heading: "Playfair Display", Georgia, serif;
    --font-display: "Cinzel Decorative", cursive, serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   ITC BENGUIAT FONT FACES
======================================== */

/* ITC Benguiat Std Book Condensed (Regular/400) */
@font-face {
    font-family: "ITC Benguiat";
    src: url("../../other/fonts/itc-benguiat-std/ITCBenguiatStdBookCn.OTF")
        format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ITC Benguiat Std Book Condensed Italic */
@font-face {
    font-family: "ITC Benguiat";
    src: url("../../other/fonts/itc-benguiat-std/ITCBenguiatStdBookCnIt.OTF")
        format("opentype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* ITC Benguiat Std Medium Condensed (500) */
@font-face {
    font-family: "ITC Benguiat";
    src: url("../../other/fonts/itc-benguiat-std/ITCBenguiatStdMediumCn.OTF")
        format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* ITC Benguiat Std Medium Condensed Italic */
@font-face {
    font-family: "ITC Benguiat";
    src: url("../../other/fonts/itc-benguiat-std/ITCBenguiatStdMediumCnIt.OTF")
        format("opentype");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* ITC Benguiat Std Bold Condensed (700) */
@font-face {
    font-family: "ITC Benguiat";
    src: url("../../other/fonts/itc-benguiat-std/ITCBenguiatStdBoldCn.OTF")
        format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ITC Benguiat Std Bold Condensed Italic */
@font-face {
    font-family: "ITC Benguiat";
    src: url("../../other/fonts/itc-benguiat-std/ITCBenguiatStdBoldCnIt.OTF")
        format("opentype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: var(--text-dark);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    opacity: 1; /* Ensure body is always visible */
    min-height: 100vh; /* Ensure full height */
    width: 100%;
    max-width: 100vw;
}

/* Prevent scrolling when mobile menu is open */
body.menu-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* ========================================
   CREATIVE PRELOADER - DIPLOMATIC ELEGANCE
======================================== */

/* Prevent scrolling during loading */
body.loading {
    overflow: hidden !important;
    height: 100vh !important;
    position: fixed !important;
    width: 100% !important;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(
        135deg,
        #030a1a 0%,
        #05102d 25%,
        #0b221a 50%,
        #05102d 75%,
        #030a1a 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 1s ease, visibility 1s ease, transform 1s ease;
    overflow: hidden;
    pointer-events: all;
}

/* Full opaque backdrop to block content behind */
.loading-screen::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #05102d;
    z-index: -1;
}

/* Animated Orbiting Particles */
.loading-screen::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
            2px 2px at 20% 30%,
            rgba(212, 175, 55, 0.3),
            transparent
        ),
        radial-gradient(
            2px 2px at 60% 70%,
            rgba(124, 152, 133, 0.3),
            transparent
        ),
        radial-gradient(
            2px 2px at 50% 50%,
            rgba(255, 255, 255, 0.2),
            transparent
        ),
        radial-gradient(
            2px 2px at 80% 10%,
            rgba(212, 175, 55, 0.3),
            transparent
        ),
        radial-gradient(
            2px 2px at 90% 60%,
            rgba(124, 152, 133, 0.2),
            transparent
        ),
        radial-gradient(
            1px 1px at 33% 80%,
            rgba(255, 255, 255, 0.3),
            transparent
        ),
        radial-gradient(
            1px 1px at 15% 90%,
            rgba(212, 175, 55, 0.2),
            transparent
        );
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: particlesFloat 20s ease-in-out infinite;
    opacity: 0.6;
}

/* Geometric Pattern Overlay */
.loading-screen::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(124, 152, 133, 0.03) 50px,
            rgba(124, 152, 133, 0.03) 51px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 50px,
            rgba(212, 175, 55, 0.03) 50px,
            rgba(212, 175, 55, 0.03) 51px
        );
    animation: patternShift 30s linear infinite;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.15) rotate(5deg);
    pointer-events: none;
}

.loading-logo {
    width: 160px;
    height: 160px;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 3;
    animation: logoMagic 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(212, 175, 55, 0.4))
        drop-shadow(0 10px 20px rgba(124, 152, 133, 0.3));
}

/* Hexagonal Geometric Ring */
.loading-logo::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
    border: 3px solid transparent;
    border-image: linear-gradient(
            45deg,
            rgba(212, 175, 55, 0.6),
            rgba(124, 152, 133, 0.6),
            rgba(212, 175, 55, 0.6)
        )
        1;
    clip-path: polygon(50% 0%, 90% 25%, 90% 75%, 50% 100%, 10% 75%, 10% 25%);
    animation: hexagonRotate 8s linear infinite;
}

/* Pulsing Outer Ring */
.loading-logo::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 240px;
    height: 240px;
    margin: -120px 0 0 -120px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulseRingCreative 3s ease-in-out infinite;
}

.loading-text {
    color: transparent;
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: var(--space-sm);
    letter-spacing: 3px;
    position: relative;
    z-index: 3;
    background: linear-gradient(
        90deg,
        rgba(111, 118, 103, 1) 0%,
        rgba(255, 255, 255, 1) 25%,
        rgba(199, 211, 231, 1) 50%,
        rgba(255, 255, 255, 1) 75%,
        rgba(111, 118, 103, 1) 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 3s linear infinite, fadeInScale 1s ease forwards;
    text-shadow: 0 0 20px rgba(111, 118, 103, 0.3);
}

.loading-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-family: var(--font-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.loading-spinner {
    width: 100px;
    height: 100px;
    margin-top: var(--space-2xl);
    position: relative;
    z-index: 3;
}

/* Orbital Spinner Design */
.loading-spinner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top: 3px solid rgba(212, 175, 55, 0.8);
    border-right: 3px solid rgba(124, 152, 133, 0.8);
    animation: orbitSpin 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.loading-spinner::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom: 3px solid rgba(255, 255, 255, 0.9);
    border-left: 3px solid rgba(255, 255, 255, 0.9);
    animation: orbitSpin 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite reverse;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* ========================================
   PRELOADER ANIMATIONS
======================================== */

@keyframes gradientShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes particlesFloat {
    0%,
    100% {
        background-position: 0% 0%;
        opacity: 0.6;
    }
    25% {
        background-position: 100% 100%;
        opacity: 0.8;
    }
    50% {
        background-position: 50% 50%;
        opacity: 0.6;
    }
    75% {
        background-position: 0% 100%;
        opacity: 0.7;
    }
}

@keyframes patternShift {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(50px) translateY(50px);
    }
}

@keyframes logoMagic {
    0%,
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
        filter: drop-shadow(0 20px 40px rgba(212, 175, 55, 0.4))
            drop-shadow(0 10px 20px rgba(124, 152, 133, 0.3));
    }
    25% {
        transform: translateY(-20px) scale(1.08) rotate(2deg);
        filter: drop-shadow(0 30px 50px rgba(212, 175, 55, 0.6))
            drop-shadow(0 15px 30px rgba(124, 152, 133, 0.4));
    }
    50% {
        transform: translateY(-10px) scale(1.05) rotate(-1deg);
        filter: drop-shadow(0 25px 45px rgba(124, 152, 133, 0.5))
            drop-shadow(0 12px 25px rgba(212, 175, 55, 0.4));
    }
    75% {
        transform: translateY(-15px) scale(1.03) rotate(1deg);
        filter: drop-shadow(0 22px 42px rgba(212, 175, 55, 0.5))
            drop-shadow(0 11px 22px rgba(124, 152, 133, 0.35));
    }
}

@keyframes hexagonRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.8;
    }
}

@keyframes pulseRingCreative {
    0%,
    100% {
        transform: scale(0.85);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.6;
    }
}

@keyframes shimmerText {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes orbitSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes particleMove {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Elegant Progress Bar */
.loading-progress {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.loading-progress-bar {
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(111, 118, 103, 1) 0%,
        rgba(199, 211, 231, 1) 50%,
        rgba(111, 118, 103, 1) 100%
    );
    background-size: 200% 100%;
    border-radius: 10px;
    animation: progressFillCreative 2.5s ease-in-out forwards,
        shimmerProgress 2s linear infinite;
    box-shadow: 0 0 20px rgba(111, 118, 103, 0.6),
        0 0 40px rgba(199, 211, 231, 0.4);
}

@keyframes progressFillCreative {
    0% {
        width: 0%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

@keyframes shimmerProgress {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Page Entrance Animations */
body.page-enter {
    opacity: 0;
    transform: translateY(30px);
}

body.page-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fallback - ensure content is visible */
body:not(.page-enter) {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-sm);
    box-sizing: border-box;
}

/* Section Horizontal Padding - CHANGE THIS TO ADJUST ALL SECTIONS */
section {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
    max-width: 100%;
    overflow-x: hidden;
}

/* ========================================
   SCROLL ANIMATIONS
======================================== */

/* Base animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade animations */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-in.animated {
    opacity: 1;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

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

.fade-in-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.7s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Scale animations */
.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

.scale-up {
    opacity: 0;
    transform: scale(0.5) translateY(30px);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scale-up.animated {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Rotate animations */
.rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rotate-in.animated {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Flip animations */
.flip-in {
    opacity: 0;
    transform: perspective(1000px) rotateY(-90deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.flip-in.animated {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg);
}

/* Slide animations */
.slide-in-left {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Bounce animations */
.bounce-in {
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.animated {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for multiple elements */
.stagger-1 {
    transition-delay: 0.1s !important;
}
.stagger-2 {
    transition-delay: 0.2s !important;
}
.stagger-3 {
    transition-delay: 0.3s !important;
}
.stagger-4 {
    transition-delay: 0.4s !important;
}
.stagger-5 {
    transition-delay: 0.5s !important;
}
.stagger-6 {
    transition-delay: 0.6s !important;
}
.stagger-7 {
    transition-delay: 0.7s !important;
}
.stagger-8 {
    transition-delay: 0.8s !important;
}

/* Continuous animations */
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(124, 152, 133, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(124, 152, 133, 0.8);
    }
}

/* Apply continuous animations */
.float-animation {
    animation: float 3s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

.glow-animation {
    animation: glow 3s ease-in-out infinite;
}

/* Hover enhancements */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.hover-scale {
    transition: transform 0.3s ease;
}

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

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(124, 152, 133, 0.6);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-family: var(--font-display); /* Cinzel Decorative for big headings */
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px rgba(5, 16, 45, 0.1);
    color: var(--text-dark);
}

h2 {
    font-family: var(--font-display); /* Cinzel Decorative for big headings */
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0px rgba(5, 16, 45, 0.1);
    color: var(--text-dark);
}

h3 {
    font-family: var(--font-display); /* Cinzel Decorative for big headings */
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-medium);
}

/* Small grey headings & descriptive text - ITC Benguiat font
   Apply to paragraph text and small headings with grey colors.
   If hosting the font, add @font-face above and update path:

   @font-face {
       font-family: 'ITC Benguiat';
       src: url('../fonts/ITC-Benguiat.woff2') format('woff2'),
            url('../fonts/ITC-Benguiat.woff') format('woff');
       font-weight: 400 700;
       font-style: normal;
       font-display: swap;
   }
*/

p {
    font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 0.3px;
    color: var(--text-medium);
}

.lead {
    font-family: var(
        --font-heading
    ); /* Playfair Display for lead/subheadings */
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-image: url("../amimun_assets/bg-nav.jpg");
    background-size: 30%;
    background-position: 0 -70px;
    background-repeat: repeat;
    border-bottom: 2px solid #0a1f18;
    z-index: 1000;
    transition: var(--transition-smooth);
    transform: translateY(-100px);
    opacity: 0;
    animation: navSlideDown 0.8s ease 1.5s forwards;
}
/* check */

@keyframes navSlideDown {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(26, 35, 50, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-sm);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 1001;
}

.logo {
    width: 70px;
    height: auto;
}

.brand-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.3s ease;
}

.brand-text span {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    padding: var(--space-xs) var(--space-sm);
    border-radius: 8px;
    overflow: hidden;
}

.nav-links a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(124, 152, 133, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a:hover {
    color: var(--accent-sage);
    background-color: rgba(124, 152, 133, 0.1);
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-sage);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-subscribe {
    background: var(--gradient-primary);
    color: var(--text-white) !important;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.btn-subscribe::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

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

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

/* Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: var(--space-xs);
    border: none;
    background: none;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--text-white) !important;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--text-white) !important;
}

.mobile-menu-toggle.active ~ .brand-text h3 {
    color: var(--text-white);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
        135deg,
        var(--primary-navy) 0%,
        rgba(26, 35, 50, 0.95) 50%,
        var(--accent-sage) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    text-align: center;
    list-style: none;
}

.mobile-nav-links a {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 600;
    padding: var(--space-md);
    border-radius: 15px;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.4s ease;
    text-decoration: none;
}

.mobile-menu-overlay.active .mobile-nav-links a {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-overlay.active .mobile-nav-links a:nth-child(1) {
    transition-delay: 0.1s;
}
.mobile-menu-overlay.active .mobile-nav-links a:nth-child(2) {
    transition-delay: 0.2s;
}
.mobile-menu-overlay.active .mobile-nav-links a:nth-child(3) {
    transition-delay: 0.3s;
}
.mobile-menu-overlay.active .mobile-nav-links a:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    color: var(--accent-gold);
}

.mobile-nav-links .btn-subscribe {
    margin-top: var(--space-lg);
    font-size: 1.2rem;
    padding: var(--space-md) var(--space-xl);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.4s ease 0.5s;
}

.mobile-menu-overlay.active .mobile-nav-links .btn-subscribe {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* Section Separator */
.section-separator {
    position: relative;
    padding: var(--space-lg) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    margin: 0;
}

.separator-line {
    position: absolute;
    left: 5%;
    right: 5%;
    top: 50%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #1a1a1a 15%,
        #1a1a1a 85%,
        transparent 100%
    );
    opacity: 0.4;
}

.separator-icon {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border-radius: 50%;
    border: 2px solid #1a1a1a;
}

.separator-icon i {
    font-size: 0.6rem;
    color: #1a1a1a;
    opacity: 0.6;
}

/* Hero Section */
.hero {
    padding: calc(var(--space-xl) + 80px) var(--space-2xl) var(--space-sm);
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: -20%;
    width: 40%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.03;
    border-radius: 50% 0 0 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-content {
    opacity: 0;
    transform: translateY(50px);
    animation: heroContentSlideUp 1s ease 2s forwards;
}

@keyframes heroContentSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--bg-secondary);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-sage);
    margin-bottom: var(--space-md);
    border: 1px solid rgba(124, 152, 133, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 2.2s forwards;
}

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

.hero-title {
    font-family: var(
        --font-display
    ); /* Cinzel Decorative for "The UNified Voice" title */
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInFromLeft 1s ease 2.4s forwards;
}

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.highlight {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%,
    100% {
        background: var(--gradient-primary);
        background-clip: text;
        -webkit-background-clip: text;
    }
    50% {
        background: linear-gradient(
            135deg,
            var(--accent-gold),
            var(--accent-sage)
        );
        background-clip: text;
        -webkit-background-clip: text;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: var(--space-xl);
    max-width: 90%;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInFromLeft 1s ease 2.6s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 2.8s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--gradient-primary);
    color: #ffffff;
    text-decoration: none;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.btn-primary i {
    color: #ffffff;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.8s ease;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-ghost {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    padding: var(--space-md) 0;
    position: relative;
    transition: var(--transition-fast);
}

.btn-ghost:hover {
    color: var(--accent-sage);
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 3s forwards;
    flex-wrap: wrap;
    max-width: 100%;
}

.stat {
    text-align: left;
    flex: 0 1 auto;
    min-width: 0;
}

.stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-sage);
    font-family: var(--font-serif);
    min-width: 80px;
    width: max-content;
    max-width: 120px;
}

.stat .label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

/* Hero Features - Alternative to stats */
.hero-features {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: nowrap;
    margin-top: var(--space-md);
    overflow-x: auto;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(108, 117, 86, 0.1);
    border: 1px solid var(--accent-sage);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(108, 117, 86, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 86, 0.2);
}

.feature-tag i {
    color: var(--accent-sage);
    font-size: 1.1rem;
}

.feature-tag span {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Featured Quotes - Alternative to stats showcase */
.featured-quotes {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    padding: var(--space-lg);
}

.quote-block {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 250, 252, 0.8) 100%
    );
    padding: var(--space-xl);
    border-radius: 16px;
    border-left: 4px solid var(--accent-sage);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.quote-block:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    color: var(--accent-sage);
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
    opacity: 0.6;
}

.quote-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: var(--space-md);
}

.quote-author {
    display: block;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 600;
    text-align: right;
}

/* About Values - Alternative to about stats */
.about-values {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: var(--space-lg);
    background: rgba(108, 117, 86, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(108, 117, 86, 0.1);
    transform: translateY(-4px);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--accent-sage);
    margin-bottom: var(--space-md);
}

.value-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Hero Visual - Interactive Flipbook Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.newsletter-preview {
    perspective: 2000px;
    position: relative;
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-25px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) rotate(1deg);
    }
}

.newsletter-page {
    position: relative;
    width: 420px;
    height: 600px;
    cursor: pointer;
    transform-style: preserve-3d;
    animation: flipbookEntrance 1.5s ease-out forwards,
        crazyRotate 20s ease-in-out infinite;
    animation-delay: 0s, 1.5s;
}

@keyframes flipbookEntrance {
    0% {
        opacity: 0;
        transform: scale(0.5) rotateY(-180deg) translateZ(-500px);
    }
    60% {
        opacity: 1;
        transform: scale(1.1) rotateY(20deg) translateZ(50px);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateY(0deg) translateZ(0px);
    }
}

@keyframes crazyRotate {
    0%,
    100% {
        transform: rotateY(-5deg) rotateX(5deg) scale(1);
    }
    25% {
        transform: rotateY(10deg) rotateX(-3deg) scale(1.02);
    }
    50% {
        transform: rotateY(-8deg) rotateX(8deg) scale(0.98);
    }
    75% {
        transform: rotateY(12deg) rotateX(-5deg) scale(1.01);
    }
}

.newsletter-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(26, 35, 50, 0.3),
        0 15px 30px rgba(124, 152, 133, 0.2), 0 5px 15px rgba(212, 175, 55, 0.1);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
}

.newsletter-page:hover img {
    transform: scale(1.05) rotateY(5deg) rotateX(-5deg);
    box-shadow: 0 40px 80px rgba(26, 35, 50, 0.4),
        0 20px 40px rgba(124, 152, 133, 0.3),
        0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Animated glow effect */
.newsletter-page::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(
        45deg,
        var(--accent-sage),
        var(--accent-gold),
        var(--accent-coral),
        var(--accent-lavender),
        var(--accent-sage)
    );
    background-size: 400% 400%;
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0;
    animation: gradientGlow 8s ease infinite;
    filter: blur(15px);
    transition: opacity 0.5s ease;
}

.newsletter-page:hover::before {
    opacity: 0.7;
}

@keyframes gradientGlow {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Sparkle particles */
.newsletter-page::after {
    content: "✨";
    position: absolute;
    font-size: 2rem;
    animation: sparkleFloat 3s ease-in-out infinite;
    opacity: 0;
    pointer-events: none;
}

@keyframes sparkleFloat {
    0%,
    100% {
        opacity: 0;
        transform: translate(0, 0) scale(0.5);
    }
    10% {
        opacity: 1;
    }
    50% {
        opacity: 1;
        transform: translate(30px, -40px) scale(1);
    }
    90% {
        opacity: 0;
    }
}

/* Pulsing badge overlay */
.flipbook-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-sage));
    color: var(--primary-white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    z-index: 10;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.8);
    }
}

/* Interactive click hint */
.click-hint {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-sage);
    font-size: 0.9rem;
    font-weight: 600;
    animation: bounceHint 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

@keyframes bounceHint {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.click-hint i {
    animation: wiggle 1s ease-in-out infinite;
}

@keyframes wiggle {
    0%,
    100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(15deg);
    }
}

/* Featured Article */
.featured-article {
    padding: var(--space-xl) 0;
    background: var(--primary-white);
}

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

.article-category {
    display: inline-block;
    background: var(--accent-coral);
    color: var(--primary-white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.article-content h2 {
    font-family: var(--font-serif);
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.article-excerpt {
    font-size: 1.2rem;
    margin-bottom: var(--space-xl);
    color: var(--text-medium);
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
}

.publish-date {
    font-size: 0.9rem;
    color: var(--text-light);
}

.read-more {
    color: var(--accent-sage);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.read-more:hover {
    color: var(--text-dark);
}

/* Newsletter Showcase Section */
.newsletter-showcase {
    padding: 0 0 var(--space-2xl);
    background: linear-gradient(
        180deg,
        var(--bg-primary) 0%,
        var(--bg-secondary) 100%
    );
}

.showcase-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: var(--gradient-accent);
    color: var(--text-white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.showcase-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.showcase-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.flipbook-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    margin-top: var(--space-2xl);
}

.flipbook-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flipbook-preview {
    position: relative;
    width: 420px;
    height: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.flipbook-preview:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 70px rgba(26, 35, 50, 0.2);
}

.newsletter-cover {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.flipbook-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.flipbook-preview:hover .flipbook-overlay {
    opacity: 1;
}

.play-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.play-icon i {
    font-size: 2rem;
    color: var(--accent-sage);
}

.click-text {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-flipbook {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-top: var(--space-lg);
    transition: var(--transition-smooth);
}

.btn-flipbook:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.newsletter-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.detail-card {
    background: var(--primary-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.detail-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.detail-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.detail-card h4 {
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.detail-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* What's Inside Section */
.whats-inside {
    padding: var(--space-2xl) 0;
    background: var(--primary-white);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.content-item {
    position: relative;
    padding: var(--space-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.content-item:hover {
    /* background: #bea197; */
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.content-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-sage);
    opacity: 0.15;
}

.content-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.content-icon i {
    font-size: 1.8rem;
    color: var(--text-white);
}

.content-item h3 {
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.content-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Why Read Section */
.why-read {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
}

.why-read-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.section-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--accent-sage);
    color: var(--text-white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.why-read-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.intro-text {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.benefit-item {
    display: flex;
    gap: var(--space-md);
}

.benefit-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--accent-sage);
}

.benefit-content h4 {
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.benefit-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.stat-card {
    background: var(--primary-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--text-white);
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.stat-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {
    .flipbook-container,
    .why-read-content {
        grid-template-columns: 1fr;
    }

    .showcase-header h2,
    .why-read-text h2 {
        font-size: 2rem;
    }

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

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

/* Newsletter Issues */
.newsletters {
    padding: var(--space-xl) 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

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

.newsletter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.newsletter-card {
    background: var(--accent-coral);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.newsletter-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.issue-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--accent-gold);
    color: var(--primary-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

.card-content {
    padding: var(--space-lg);
}

.issue-date {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-sm);
}

.card-content h3 {
    font-family: var(--font-serif);
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.card-content p {
    margin-bottom: var(--space-md);
    color: var(--text-medium);
}

.read-link {
    color: var(--accent-sage);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

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

/* About Section */
.about {
    padding: var(--space-xl) 0;
    background: var(--primary-white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-text h2 {
    font-family: var(
        --font-display
    ); /* Cinzel Decorative for "About The UNified Voice Newsletter" */
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: var(--space-md);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

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

.stat-item h3 {
    font-size: 2rem;
    color: var(--accent-sage);
    font-family: var(--font-serif);
    margin-bottom: var(--space-xs);
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(var(--shadow-medium));
}

/* Team Section */
.team {
    padding: var(--space-xl) 0;
    background: var(--bg-secondary);
}

.team-subsection {
    margin-bottom: var(--space-2xl);
}

.team-subsection:last-child {
    margin-bottom: 0;
}

.team-subsection-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: var(--space-xl);
    font-weight: 600;
    position: relative;
    padding-bottom: var(--space-md);
}

.team-subsection-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.team-grid-four {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.team-member {
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.member-image {
    margin-bottom: var(--space-lg);
}

.member-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--accent-sage);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.member-info h3 {
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.role {
    display: block;
    color: var(--accent-sage);
    font-weight: 600;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.member-info p {
    font-style: italic;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Newsletter Signup */
.newsletter-signup {
    padding: var(--space-xl) 0;
    background: var(--bg-dark);
    color: var(--text-white);
    text-align: center;
}

.signup-content h2 {
    color: var(--text-white);
    margin-bottom: var(--space-md);
}

.signup-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.signup-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.signup-form input {
    flex: 1;
    padding: var(--space-md);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.signup-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.signup-form input:focus {
    outline: none;
    border-color: var(--accent-sage);
}

.signup-form .btn-subscribe {
    background: var(--gradient-accent);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.signup-form .btn-subscribe:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.signup-form .btn-subscribe.loading {
    background: var(--accent-sage);
}

.subscription-message {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    transition: var(--transition-smooth);
}

.subscription-message.success {
    background: rgba(124, 152, 133, 0.2);
    color: var(--accent-sage);
    border: 2px solid var(--accent-sage);
}

.subscription-message.error {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.privacy-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Testimonials Section */
.testimonials {
    padding: var(--space-xl) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(124, 152, 133, 0.05) 50%,
        transparent 100%
    );
    pointer-events: none;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    box-sizing: border-box;
    overflow-x: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.testimonials-header h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.testimonials-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-sizing: border-box;
}

.testimonials-track {
    display: flex;
    width: 500%;
    height: 100%;
    animation: slideTestimonials 20s infinite;
}

.testimonial-slide {
    width: 20%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}

.testimonial-card {
    background: var(--primary-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    max-width: 500px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-sage);
    font-family: var(--font-serif);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: var(--space-lg);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-sage);
}

.author-details h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
}

.author-details p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(124, 152, 133, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dot.active {
    background: var(--accent-sage);
    transform: scale(1.2);
}

@keyframes slideTestimonials {
    0%,
    18% {
        transform: translateX(0);
    }
    20%,
    38% {
        transform: translateX(-20%);
    }
    40%,
    58% {
        transform: translateX(-40%);
    }
    60%,
    78% {
        transform: translateX(-60%);
    }
    80%,
    98% {
        transform: translateX(-80%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Search and Filter Controls */
.newsletter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.search-container {
    position: relative;
    flex: 1;
    max-width: 400px;
    min-width: 250px;
}

.search-input {
    width: 100%;
    padding: var(--space-md) var(--space-md) var(--space-md) 3rem;
    border: 2px solid rgba(124, 152, 133, 0.2);
    border-radius: var(--radius-md);
    background: var(--primary-white);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-sage);
    box-shadow: 0 0 0 3px rgba(124, 152, 133, 0.1);
}

.search-icon {
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-medium);
    font-size: 1.1rem;
}

.filter-controls {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.sort-select {
    padding: var(--space-sm) var(--space-md);
    border: 2px solid rgba(124, 152, 133, 0.2);
    border-radius: var(--radius-md);
    background: var(--primary-white);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
    min-width: 150px;
}

.sort-select:focus {
    outline: none;
    border-color: var(--accent-sage);
}

.filter-buttons {
    display: flex;
    gap: var(--space-xs);
}

.filter-btn {
    padding: var(--space-xs) var(--space-md);
    border: 2px solid rgba(124, 152, 133, 0.2);
    background: transparent;
    color: var(--text-medium);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

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

.newsletter-grid.searching .newsletter-card {
    opacity: 0.3;
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.newsletter-grid.searching .newsletter-card.match {
    opacity: 1;
    transform: scale(1);
}

.no-results {
    text-align: center;
    padding: var(--space-2xl);
    color: var(--text-medium);
    display: none;
}

.no-results.show {
    display: block;
}

.no-results i {
    font-size: 3rem;
    color: var(--accent-sage);
    margin-bottom: var(--space-md);
}

.no-results h3 {
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: #ffffff;
    padding: var(--space-xl) 0 var(--space-md);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo img {
    width: 100px;
    height: auto;
    opacity: 1;
    z-index: 10;
}

.footer-logo h4 {
    color: #ffffff;
    margin: 0;
    font-size: 1.3rem;
}

.footer-logo span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.link-group h5 {
    color: var(--text-white);
    margin-bottom: var(--space-sm);
    font-size: 1rem;
    font-weight: 600;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    padding: 2px 0;
}

.link-group a:hover {
    color: var(--accent-sage);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--accent-sage);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-md);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--accent-sage);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    section {
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
    }

    .hero {
        padding-left: var(--space-xl);
        padding-right: var(--space-xl);
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
        gap: var(--space-md);
        width: 100%;
    }

    .stat {
        flex: 0 1 auto;
    }

    .stat .number {
        font-size: 1.75rem;
        min-width: 70px;
        max-width: 100px;
    }

    .stat .label {
        font-size: 0.8rem;
        max-width: 100px;
    }

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

    /* Responsive flipbook */
    .newsletter-page {
        width: 300px;
        height: 430px;
    }

    .flipbook-preview {
        width: 300px;
        height: 430px;
    }
    .click-hint {
        font-size: 0.8rem;
    }

    .flipbook-badge {
        font-size: 0.65rem;
        padding: 4px 12px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

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

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

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

    /* Testimonials responsive */
    .testimonials-header h2 {
        font-size: 2rem;
    }

    .testimonial-slide {
        padding: var(--space-lg);
    }

    .testimonial-card {
        padding: var(--space-lg);
    }

    .testimonials-slider {
        height: 350px;
    }

    /* Newsletter controls responsive */
    .newsletter-controls {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-md);
    }

    .search-container {
        max-width: none;
    }

    .filter-controls {
        justify-content: center;
        flex-wrap: wrap;
    }

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

/* Mobile Preloader Adjustments */
@media (max-width: 768px) {
    .loading-screen {
        padding: var(--space-md);
    }

    .loading-logo {
        width: 140px;
        height: 140px;
    }

    .loading-text {
        font-size: 1.8rem;
        letter-spacing: 2px;
        text-align: center;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .loading-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
        text-align: center;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .loading-spinner {
        width: 80px;
        height: 80px;
        margin-top: var(--space-xl);
    }

    .loading-progress {
        width: 250px;
        bottom: 40px;
    }
}

@media (max-width: 480px) {
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    .loading-logo {
        width: 150px;
        height: 150px;
    }

    .loading-text {
        font-size: 1.8rem;
        letter-spacing: 1.5px;
        text-align: center;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 var(--space-sm);
    }

    .loading-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1px;
        text-align: center;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 var(--space-sm);
    }

    .loading-spinner {
        width: 70px;
        height: 70px;
        margin-top: var(--space-lg);
    }

    .loading-progress {
        width: 200px;
        bottom: 30px;
    }

    .container {
        padding: 0 var(--space-sm);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    section {
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .section-separator {
        padding: var(--space-lg) 0;
    }

    .separator-icon {
        width: 30px;
        height: 30px;
    }

    .separator-icon i {
        font-size: 0.4rem;
    }

    .hero {
        padding: 160px var(--space-sm) 50px;
        overflow-x: hidden;
    }

    .hero .container {
        padding: 0 var(--space-sm);
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
    }

    .hero-title {
        font-size: 2rem;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: var(--space-sm);
        align-items: stretch;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: var(--space-md) var(--space-md);
        font-size: 0.95rem;
        box-sizing: border-box;
    }

    .hero-stats {
        gap: var(--space-sm);
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
    }

    .stat {
        min-width: 0;
        max-width: 30%;
        flex: 0 1 auto;
    }

    .stat .number {
        font-size: 1.5rem;
        min-width: 60px;
        max-width: 90px;
        word-break: keep-all;
    }

    .stat .label {
        font-size: 0.75rem;
        max-width: 90px;
    }

    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
    }

    .feature-tag {
        flex: 0 1 auto;
    }

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

    .team-grid,
    .team-grid-four {
        grid-template-columns: 1fr;
    }

    .team-subsection-title {
        font-size: 1.5rem;
    }

    /* Small screen flipbook */
    .newsletter-page {
        width: 260px;
        height: 370px;
    }

    .flipbook-preview {
        width: 260px;
        height: 370px;
    }
    .newsletter-page::before {
        filter: blur(10px);
    }

    .click-hint {
        bottom: -35px;
        font-size: 0.75rem;
    }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.newsletter-card,
.team-member {
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card {
    animation: fadeInScale 0.5s ease forwards;
}

.search-container,
.filter-controls {
    animation: slideInRight 0.4s ease forwards;
}

/* Enhanced Button Animations */
.btn-primary,
.btn-ghost,
.btn-subscribe,
.filter-btn,
.sort-select {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-subscribe::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: var(--transition-smooth);
}

.btn-primary:hover::before,
.btn-subscribe:hover::before {
    left: 100%;
}

/* Enhanced Card Hover Effects */
.newsletter-card {
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(124, 152, 133, 0.1) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

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

.newsletter-card:hover .issue-badge {
    transform: scale(1.1);
    background: var(--accent-sage);
}

/* Search Input Enhancements */
.search-input:focus + .search-icon,
.search-input:not(:placeholder-shown) + .search-icon {
    color: var(--accent-sage);
    transform: translateY(-50%) scale(1.1);
}

.search-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.search-container:focus-within::after {
    width: 100%;
}

/* Testimonial Enhanced Animations */
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

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

.testimonials-track:hover {
    animation-play-state: paused;
}

/* Loading States */
.newsletter-grid.searching {
    position: relative;
}

.newsletter-grid.searching::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--accent-sage) 0%,
        var(--accent-gold) 50%,
        var(--accent-sage) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Scroll-triggered animations */
@media (prefers-reduced-motion: no-preference) {
    .newsletter-card,
    .team-member,
    .testimonial-card {
        opacity: 0;
        transform: translateY(30px);
        animation: none;
    }

    .newsletter-card.in-view,
    .team-member.in-view,
    .testimonial-card.in-view {
        animation: fadeInUp 0.6s ease forwards;
    }
}

/* Custom Scrollbar */
.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonials-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--accent-sage);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .newsletter-signup {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
}
