/* ========================================
   RÍOS DE VIDA HOUSTON - CONTEMPORARY POTTERY BARN INSPIRED DESIGN
   ======================================== */

/* CSS Variables - Contemporary Pottery Barn Inspired Color Palette */
:root {
    /* Primary Colors - Contemporary */
    --primary-50: #f8f6f2;
    --primary-100: #f0ede6;
    --primary-200: #e8e4d8;
    --primary-300: #d8d2c4;
    --primary-400: #c4bcab;
    --primary-500: #b0a692;
    --primary-600: #9c9079;
    --primary-700: #887a60;
    --primary-800: #746447;
    --primary-900: #604e2e;
    --primary-950: #4c3a15;

    /* Secondary Colors - Warm Neutrals */
    --secondary-50: #faf9f6;
    --secondary-100: #f5f3f0;
    --secondary-200: #ebe8e2;
    --secondary-300: #d8d2c8;
    --secondary-400: #c4bcae;
    --secondary-500: #b0a694;
    --secondary-600: #9c907a;
    --secondary-700: #887a60;
    --secondary-800: #746446;
    --secondary-900: #604e2c;
    --secondary-950: #4c3a12;

    /* Neutral Colors - Contemporary */
    --neutral-50: #fafaf9;
    --neutral-100: #f5f5f4;
    --neutral-200: #e7e5e4;
    --neutral-300: #d6d3d1;
    --neutral-400: #a8a29e;
    --neutral-500: #78716c;
    --neutral-600: #57534e;
    --neutral-700: #44403c;
    --neutral-800: #292524;
    --neutral-900: #1c1917;
    --neutral-950: #0c0a09;

    /* Contemporary Church Colors */
    --church-blue: #2c2c2c;
    --church-gold: #b0a692;
    --church-cream: #f8f6f2;
    --church-white: #ffffff;
    --church-gray: #78716c;
    --church-dark: #1c1917;

    /* Typography - Contemporary */
    --font-serif: 'Playfair Display', 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-elegant: 'Cormorant Garamond', Georgia, serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.15);
    --shadow-gold: 0 4px 14px 0 rgb(176 166 146 / 0.2);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: var(--church-cream);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Contemporary Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: var(--neutral-800);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    color: var(--neutral-800);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--neutral-700);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--neutral-700);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--neutral-700);
}

h5 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--neutral-700);
}

h6 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--neutral-700);
}

p {
    margin: 0 0 1rem 0;
    color: var(--neutral-600);
    font-weight: 300;
}

a {
    color: var(--church-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--neutral-800);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    color: #ffffff;
    transition: opacity var(--transition-fast);
}

.logo:hover {
    opacity: 0.8;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.logo img {
    height: 35px;
    width: auto;
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    margin-left: auto;
    /* Push navigation to the right */
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width var(--transition-fast);
}

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

/* Donate Button */
.donate-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    border: 2px solid #1e3a8a;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.donate-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;
}

.donate-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
    border-color: #1e40af;
}

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

.donate-btn::after {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    transition: color var(--transition-fast);
}

.mobile-menu-toggle:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Admin Button Styles */
.admin-btn {
    background: linear-gradient(135deg, var(--neutral-700), var(--neutral-800));
    color: var(--church-white) !important;
    border: 2px solid var(--neutral-600);
    border-radius: var(--radius-full);
    padding: 0.5rem 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--transition-slow);
}

.admin-btn:hover {
    background: linear-gradient(135deg, var(--neutral-800), var(--neutral-900));
    border-color: var(--neutral-500);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--church-white) !important;
}

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

.admin-btn i {
    font-size: 0.875rem;
    transition: transform var(--transition-normal);
}

.admin-btn:hover i {
    transform: rotate(180deg);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--church-cream);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.youtube-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.youtube-video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.3;
}

/* Mobile Video Support */
@media (max-width: 768px) {
    .youtube-video-background iframe {
        width: 100vw;
        height: 100vh;
        opacity: 0.25;
    }

    .video-overlay {
        background: linear-gradient(135deg,
                rgba(26, 26, 26, 0.85) 0%,
                rgba(44, 44, 44, 0.75) 50%,
                rgba(26, 26, 26, 0.8) 100%);
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(248, 246, 242, 0.9) 0%,
            rgba(248, 246, 242, 0.7) 50%,
            rgba(248, 246, 242, 0.8) 100%);
    z-index: 2;
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--church-cream) 0%, var(--primary-200) 100%);
    z-index: 1;
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    color: var(--neutral-800);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    color: var(--neutral-600);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contemporary Buttons */
.btn {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.95rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.02em;
    text-transform: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    transition: transform var(--transition-normal);
}

.btn:hover::before {
    transform: scale(1.05);
}

.btn-primary {
    background: var(--neutral-800);
    color: var(--church-cream);
    border-color: var(--neutral-800);
}

.btn-primary:hover {
    background: var(--neutral-900);
    border-color: var(--neutral-900);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 44, 44, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--neutral-800);
    border-color: var(--neutral-800);
}

.btn-secondary:hover {
    background: var(--neutral-800);
    color: var(--church-cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 44, 44, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--neutral-800);
    border-color: var(--neutral-400);
}

.btn-outline:hover {
    background: var(--neutral-800);
    color: var(--church-cream);
    border-color: var(--neutral-800);
}

/* Sections */
.section {
    padding: var(--space-16) 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--church-cream) 0%, var(--primary-100) 100%);
    z-index: -1;
}

/* Contemporary Section Titles */
.section-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--neutral-800);
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--church-gold);
    opacity: 0.6;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.2rem);
    text-align: center;
    color: var(--neutral-600);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Cards */
.card {
    background: var(--church-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--primary-200);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    padding: var(--space-6);
    border-bottom: 1px solid var(--primary-200);
}

.card-body {
    padding: var(--space-6);
}

.card-footer {
    padding: var(--space-6);
    border-top: 1px solid var(--primary-200);
    background: var(--primary-50);
}

/* Grid */
.grid {
    display: grid;
    gap: var(--space-6);
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

/* Responsive Grid */
@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Ministries */
.ministries {
    background: var(--church-cream);
}

.ministries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.ministry-card {
    background: var(--church-white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--primary-200);
    transition: all var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ministry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--church-gold), var(--primary-400));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

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

.ministry-card:hover::before {
    transform: scaleX(1);
}

.ministry-image {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-6);
    background: var(--primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ministry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.ministry-card h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--neutral-800);
    margin-bottom: var(--space-4);
}

.ministry-card p {
    color: var(--neutral-600);
    line-height: 1.6;
}

/* Services */
.services {
    background: var(--primary-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.service-card {
    background: var(--church-white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--primary-200);
    transition: all var(--transition-normal);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--church-gold), var(--primary-400));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: 2rem;
    color: var(--church-white);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--neutral-800);
    margin-bottom: var(--space-4);
}

.service-card p {
    color: var(--neutral-600);
    margin-bottom: var(--space-6);
}

.service-time {
    background: var(--primary-50);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    color: var(--neutral-700);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

/* Mission */
.mission {
    background: linear-gradient(135deg, var(--neutral-800) 0%, var(--neutral-900) 100%);
    color: var(--church-cream);
    text-align: center;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23b0a692" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.mission-content {
    position: relative;
    z-index: 1;
}

.mission h2 {
    color: var(--church-cream);
    margin-bottom: var(--space-8);
}

.mission p {
    color: var(--primary-200);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto var(--space-8);
}

/* Reviews */
.reviews {
    background: var(--church-cream);
}

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

.review-card {
    background: var(--church-white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--primary-200);
    transition: all var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.review-stars {
    color: var(--church-gold);
    margin-bottom: var(--space-4);
}

.review-text {
    font-style: italic;
    color: var(--neutral-700);
    line-height: 1.6;
    margin-bottom: var(--space-6);
    font-size: 1rem;
}

.review-author {
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: var(--space-2);
}

.review-location {
    color: var(--neutral-600);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--neutral-900);
    color: var(--church-cream);
    padding: var(--space-16) 0 var(--space-8);
}

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

.footer-section h3 {
    color: var(--church-cream);
    margin-bottom: var(--space-4);
    font-weight: 400;
}

.footer-section p,
.footer-section a {
    color: var(--primary-200);
    margin-bottom: var(--space-2);
}

.footer-section a:hover {
    color: var(--church-cream);
}

.footer-bottom {
    border-top: 1px solid var(--neutral-700);
    padding-top: var(--space-6);
    text-align: center;
    color: var(--neutral-400);
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .admin-btn {
        background: linear-gradient(135deg, var(--neutral-600), var(--neutral-700));
        border: 1px solid var(--neutral-500);
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        margin: 0.5rem 0;
    }

    .admin-btn:hover {
        background: linear-gradient(135deg, var(--neutral-700), var(--neutral-800));
        transform: none;
    }

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

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

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .ministries-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .container {
        padding: 0 1.5rem;
    }
}

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

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .ministry-card,
    .service-card,
    .review-card {
        padding: var(--space-6);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: var(--space-1);
}

.mb-2 {
    margin-bottom: var(--space-2);
}

.mb-3 {
    margin-bottom: var(--space-3);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-5 {
    margin-bottom: var(--space-5);
}

.mb-6 {
    margin-bottom: var(--space-6);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

.mt-1 {
    margin-top: var(--space-1);
}

.mt-2 {
    margin-top: var(--space-2);
}

.mt-3 {
    margin-top: var(--space-3);
}

.mt-4 {
    margin-top: var(--space-4);
}

.mt-5 {
    margin-top: var(--space-5);
}

.mt-6 {
    margin-top: var(--space-6);
}

.mt-8 {
    margin-top: var(--space-8);
}

.p-1 {
    padding: var(--space-1);
}

.p-2 {
    padding: var(--space-2);
}

.p-3 {
    padding: var(--space-3);
}

.p-4 {
    padding: var(--space-4);
}

.p-5 {
    padding: var(--space-5);
}

.p-6 {
    padding: var(--space-6);
}

.p-8 {
    padding: var(--space-8);
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.inline {
    display: inline;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.rounded {
    border-radius: var(--radius-md);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.rounded-full {
    border-radius: var(--radius-full);
}

.shadow {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}

.transition {
    transition: all var(--transition-normal);
}

.transition-fast {
    transition: all var(--transition-fast);
}

.transition-slow {
    transition: all var(--transition-slow);
}
