/* ==========================================================================
   Marc Ivory Central Design System & Stylesheet
   ========================================================================== */

/* --- Locally Hosted Font Import --- */
@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* --- Design Tokens / Variables --- */
:root {
    /* Color Palette */
    --color-bg: hsl(222, 25%, 6%);
    --color-bg-darker: hsl(222, 30%, 4%);
    --color-text-main: hsl(210, 15%, 95%);
    --color-text-muted: hsl(215, 12%, 68%);
    
    --color-primary: hsl(45, 85%, 60%);        /* Refined Gold */
    --color-primary-glow: hsla(45, 85%, 60%, 0.15);
    --color-primary-hover: hsl(45, 90%, 50%);
    
    --color-accent-violet: hsl(268, 70%, 55%); /* Deep Royalty Violet */
    --color-accent-violet-glow: hsla(268, 70%, 55%, 0.2);

    /* Glassmorphism Styles */
    --glass-bg: rgba(18, 22, 30, 0.65);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-focus: rgba(212, 175, 55, 0.4);
    --glass-blur: blur(16px);
    --glass-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);

    /* Typography */
    --font-heading: 'Outfit', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    /* Layout & Animation values */
    --max-width: 1200px;
    --header-height: 80px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Glowing Gradients */
.glow-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 80vh;
    background: radial-gradient(circle at 50% -100px, var(--color-accent-violet-glow) 0%, transparent 60%),
                radial-gradient(circle at 10% 200px, var(--color-primary-glow) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

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

button, input, textarea {
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Common Layout & Containers --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 40%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 4rem;
}

/* --- Headers & Footers --- */
.site-header {
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(10, 12, 17, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

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

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--color-text-muted);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
}

.hamburger-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-main);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

.site-main {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height) - 300px);
}

/* Footer Section */
.site-footer {
    background-color: var(--color-bg-darker);
    border-top: 1px solid var(--glass-border);
    padding: 5rem 0 2.5rem;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    display: inline-block;
}

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

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.footer-nav-list {
    list-style: none;
}

.footer-nav-list li {
    margin-bottom: 0.75rem;
}

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

.footer-nav-list a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1.25rem;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.social-icon-link:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.25);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 4rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* --- Interactive Components --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 2.25rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-darker);
    border: 1px solid var(--color-primary);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
    transform: translateY(-2px);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* --- Hero Section (Homepage) --- */
.hero {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 4rem 0;
    position: relative;
}

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

.hero-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--color-primary);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.25rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #ececec, var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

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

.hero-image-wrapper {
    position: relative;
}

.hero-image-container {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    position: relative;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 12s ease;
}

.hero-image-wrapper:hover .hero-image-container img {
    transform: scale(1.08);
}

.image-glow-ring {
    position: absolute;
    inset: -15px;
    border-radius: 32px;
    border: 1px dashed rgba(212, 175, 55, 0.15);
    z-index: -1;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- Featured Album (index.php) --- */
.featured-album-section {
    position: relative;
    background: radial-gradient(circle at 80% 50%, var(--color-accent-violet-glow) 0%, transparent 50%);
}

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

.album-art-glow {
    position: relative;
    border-radius: 20px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
}

.album-art-img {
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.featured-player {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--glass-shadow);
}

.player-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.play-btn:hover {
    transform: scale(1.08);
    background-color: var(--color-primary-hover);
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.4);
}

.play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent var(--color-bg-darker);
    margin-left: 4px;
}

.pause-icon {
    display: flex;
    gap: 4px;
}

.pause-icon::before, .pause-icon::after {
    content: '';
    width: 5px;
    height: 18px;
    background: var(--color-bg-darker);
    border-radius: 2px;
}

.track-info {
    flex: 1;
}

.track-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.track-artist {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Audio Visualizer Component */
.visualizer-bar-container {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 32px;
    margin-bottom: 2rem;
}

.visualizer-bar {
    flex: 1;
    background: linear-gradient(to top, var(--color-accent-violet) 0%, var(--color-primary) 100%);
    border-radius: 4px;
    height: 15%;
    transition: height 0.3s ease;
}

.visualizer-bar-container.active .visualizer-bar {
    animation: bounce 1.2s ease-in-out infinite alternate;
}

/* Give staggered delay to visualizer bars */
.visualizer-bar:nth-child(2)  { animation-delay: 0.1s; }
.visualizer-bar:nth-child(3)  { animation-delay: 0.25s; }
.visualizer-bar:nth-child(4)  { animation-delay: 0.05s; }
.visualizer-bar:nth-child(5)  { animation-delay: 0.4s; }
.visualizer-bar:nth-child(6)  { animation-delay: 0.15s; }
.visualizer-bar:nth-child(7)  { animation-delay: 0.3s; }
.visualizer-bar:nth-child(8)  { animation-delay: 0.2s; }
.visualizer-bar:nth-child(9)  { animation-delay: 0.45s; }
.visualizer-bar:nth-child(10) { animation-delay: 0.1s; }

@keyframes bounce {
    0% { height: 10%; }
    100% { height: 100%; }
}

.player-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.progress-slider-container {
    position: relative;
}

.progress-bar-bg {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.progress-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 35%; /* Mock progress */
    background: linear-gradient(to right, var(--color-accent-violet), var(--color-primary));
    border-radius: 100px;
}

.time-stamps {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.extra-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 140px;
}

.volume-icon {
    color: var(--color-text-muted);
}

.volume-slider-bg {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
}

.volume-slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 75%;
    background: var(--color-text-main);
    border-radius: 100px;
}

/* --- About & Biography Page (about.php) --- */
.bio-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.bio-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.bio-content p strong {
    color: #fff;
}

.ministry-section {
    background: radial-gradient(circle at 10% 50%, var(--color-primary-glow) 0%, transparent 50%);
}

.ministry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.ministry-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-desc {
    color: var(--color-text-muted);
    font-size: 1rem;
    flex-grow: 1;
}

/* --- Music Page (music.php) --- */
.album-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.album-row {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
}

.album-visual {
    position: sticky;
    top: 120px;
}

.album-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.album-meta {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.album-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.tracklist-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}

.tracklist-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.track-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.track-row:hover {
    background: rgba(255, 255, 255, 0.04);
}

.track-name-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.track-number {
    font-family: var(--font-heading);
    color: var(--color-text-muted);
    font-weight: 600;
    width: 20px;
}

.track-name {
    font-weight: 550;
}

.track-play-mini {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.track-row:hover .track-play-mini {
    color: var(--color-primary);
}

/* --- Contact & Booking Page (contact.php) --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.contact-feedback {
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.contact-feedback.success {
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.25);
    color: #2ed573;
}

.contact-feedback.error {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.25);
    color: #ff4757;
}

/* --- Scroll Animation Reveals --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
    .hero-grid, .featured-grid, .bio-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .album-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .album-visual {
        position: relative;
        top: 0;
        max-width: 350px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 70px;
    }
    
    .site-main {
        margin-top: 70px;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    /* Mobile Menu Drawer style */
    .mobile-nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-bg-darker);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 3rem 2rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
        pointer-events: none;
        z-index: 99;
    }
    
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.5rem;
    }
    
    /* Hamburger Active Animations */
    .mobile-nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .mobile-nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .ministry-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .hero-actions {
        flex-direction: column;
    }
}
