/* ==========================================================================
   CSS Variables & Design Tokens
   ========================================================================== */
:root {
    /* Color Palette - Premium & Vibrant Bethel Green */
    --primary-color: #00A650;
    /* Bethel Characteristic Green */
    --primary-dark: #007D3C;
    /* Darker shade of Bethel Green */
    --secondary-color: #8CC63F;
    /* Light vibrant green accent */
    --accent-color: #10B981;
    /* Emerald UI accent for gradients */

    /* Backgrounds */
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-dark: #0F172A;
    /* Slate dark */
    --bg-surface: rgba(255, 255, 255, 0.8);
    --bg-surface-dark: rgba(15, 23, 42, 0.8);

    /* Text Colors */
    --text-main: #1E293B;
    --text-muted: #64748B;
    --text-light: #F8FAFC;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --glass-blur: blur(12px);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    /* Removed padding-bottom from body, moved to footer to prevent white gap */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-white);
}

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

.highlight {
    color: var(--primary-color);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-surface);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    line-height: 1;
}

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

.nav-menu {
    display: none;
    /* Hidden on mobile by default */
}

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

.nav-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 1rem;
}

.nav-socials a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.nav-socials a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

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

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

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

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

/* Mobile Menu Active State */
.nav-menu.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    animation: slideDown 0.3s ease forwards;
}

.nav-menu.active .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../img/equipo-tecnico.png');
    /* Primary worship image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    padding-top: 60px;
    /* Offset for header */
}

/* ==========================================================================
   Ambient Glowing Blobs
   ========================================================================== */
.blob-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    /* Behind overlay and content */
}

.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    /* Heavy blur for ambient light effect */
    opacity: 0.6;
    animation: floatBlob 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-1 {
    width: 40vw;
    height: 40vw;
    background: var(--primary-color);
    top: -10%;
    left: -10%;
    animation-duration: 25s;
}

.blob-2 {
    width: 35vw;
    height: 35vw;
    background: var(--accent-color);
    bottom: -10%;
    right: -10%;
    animation-duration: 28s;
    animation-delay: -5s;
}

.blob-3 {
    width: 30vw;
    height: 30vw;
    background: #FFD700;
    /* Subtle warm glow */
    top: 40%;
    left: 50%;
    animation-duration: 22s;
    animation-delay: -10s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(10vw, 5vh) scale(1.2);
    }

    100% {
        transform: translate(-5vw, 15vh) scale(0.9);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle semi-transparent gradient on top of blobs and image */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(0, 166, 80, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Scroll Reveal Utility */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-inline: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.btn-primary:hover {
    background: #BE185D;
    /* Darker pink */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-dark);
}

/* ==========================================================================
   Live Radio Player
   ========================================================================== */
.radio-player-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    padding: 0.75rem 0;
    transition: transform var(--transition-normal);
}

.player-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left info side */
.player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #EF4444;
    /* Red */
    background: rgba(239, 68, 68, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #EF4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.station-details h4 {
    margin: 0;
    color: white;
    font-size: 1rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
}

.station-details p {
    margin: 0;
    color: #94A3B8;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
}

/* Center Controls */
.player-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
}

.play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-fast);
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.4);
}

.play-btn:hover {
    transform: scale(1.05);
    background: var(--primary-dark);
}

.visualizer {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 24px;
    opacity: 0.2;
    /* Inactive state */
    transition: opacity var(--transition-normal);
}

.visualizer.active {
    opacity: 1;
}

.visualizer .bar {
    width: 4px;
    background: var(--accent-color);
    border-radius: 2px;
    display: inline-block;
}

.visualizer.active .bar {
    animation: equalize 1s infinite alternate ease-in-out;
}

.visualizer .bar:nth-child(1) {
    height: 30%;
    animation-delay: -0.4s;
}

.visualizer .bar:nth-child(2) {
    height: 60%;
    animation-delay: -0.2s;
}

.visualizer .bar:nth-child(3) {
    height: 100%;
    animation-delay: 0s;
}

.visualizer .bar:nth-child(4) {
    height: 70%;
    animation-delay: -0.1s;
}

.visualizer .bar:nth-child(5) {
    height: 40%;
    animation-delay: -0.3s;
}

@keyframes equalize {
    0% {
        height: 20%;
    }

    100% {
        height: 100%;
    }
}

/* Right Volume */
.player-volume {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: flex-end;
    color: #94A3B8;
}

.player-volume i {
    cursor: pointer;
    width: 20px;
    text-align: center;
}

.player-volume input[type=range] {
    width: 80px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

/* ==========================================================================
   Desktop Adjustments (Media Queries)
   ========================================================================== */
@media (min-width: 768px) {
    .nav-menu {
        display: block !important;
    }

    .mobile-toggle {
        display: none;
    }

    .section {
        padding: 8rem 0;
    }
}

@media (max-width: 767px) {

    .nav-socials {
        margin-left: 0;
        border-left: none;
        padding-left: 0;
        width: 100%;
        justify-content: center;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* Mobile adjustments for the player: single row, absolute center */
    .player-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0;
        padding: 0.5rem;
        align-items: center;
        justify-content: space-between;
        position: relative;
        /* Anchor for absolute center */
    }

    .player-info {
        flex: 1 1 0%;
        min-width: 0;
        /* Important for flex truncation to work */
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
        margin-bottom: 0;
        padding-right: 30px;
        /* Avoid overlapping center button */
    }

    .live-indicator {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
        margin-bottom: 0;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .station-details {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        overflow: hidden;
        width: 100%;
    }

    .station-details h4 {
        font-size: 0.8rem;
        margin-bottom: 0;
        line-height: 1.1;
        white-space: nowrap;
        display: inline-block;
        /* Removed ellipsis so text can animate */
    }

    .station-details p {
        font-size: 0.7rem;
        margin-top: 0.1rem;
        white-space: nowrap;
        display: inline-block;
    }

    .marquee-active {
        animation: scrollText 8s linear infinite alternate;
    }

    @keyframes scrollText {

        0%,
        15% {
            transform: translateX(0);
        }

        85%,
        100% {
            transform: translateX(var(--scroll-amount));
        }
    }

    .player-controls {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .play-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .visualizer {
        position: absolute;
        left: calc(100% + 5px);
        /* Position immediately to the right of the perfectly centered play button */
        display: flex !important;
        /* Restore visibility */
        gap: 2px;
        height: 16px;
    }

    .player-volume {
        display: flex !important;
        flex: 1 1 0%;
        min-width: 0;
        justify-content: flex-end;
        align-items: center;
        gap: 0.25rem;
        padding-left: 30px;
        /* Avoid overlapping center button */
    }

    .player-volume i {
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .player-volume input[type=range] {
        width: 100%;
        max-width: 60px;
        min-width: 20px;
    }

    /* Removed body padding-bottom, handled by footer */
}

/* ==========================================================================
   Section Titles & Typography
   ========================================================================== */
.section-title-wrap {
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

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

/* ==========================================================================
   About Section (History, Vision, Mission)
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.about-text-content p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.image-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6) 0%, transparent 100%);
    z-index: 1;
}

.rounded-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    display: block;
    transition: transform var(--transition-slow);
}

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

/* Vision & Mission Cards */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition-normal);
}

.card:hover::after {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.card:hover .card-icon {
    background: var(--primary-color);
    color: white;
}

.vm-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.vm-card p {
    color: var(--text-muted);
}

/* ==========================================================================
   Dedicated Radio Section
   ========================================================================== */
.radio-section {
    background: linear-gradient(135deg, #0f172a 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.radio-section .lead-text,
.radio-section p {
    color: rgba(255, 255, 255, 0.9);
}

.radio-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 166, 80, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.radio-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.radio-logo-large {
    max-width: 350px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

/* ==========================================================================
   Programs Section - List View
   ========================================================================== */
.programs-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .programs-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.program-card {
    background: var(--bg-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    /* Mobile starts stacked */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 600px) {
    .program-card {
        flex-direction: row;
        /* Horizontal on tablets+ */
        align-items: stretch;
    }
}

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

.program-img-wrapper {
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
    /* Soft background for images with contain */
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 600px) {
    .program-img-wrapper {
        min-width: 250px;
        width: 35%;
        flex-shrink: 0;
    }
}

.program-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Prevents cutting images, ensures square and rect look good */
    max-height: 250px;
    /* Limit height on mobile */
    transition: transform var(--transition-slow);
    padding: 1rem;
    /* Optional breathing room */
}

@media (min-width: 600px) {
    .program-img {
        max-height: none;
        position: absolute;
        top: 0;
        left: 0;
    }
}

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

.program-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.program-title {
    color: var(--primary-dark);
    margin: 0 0 0.5rem 0;
    font-size: 1.35rem;
    font-weight: 700;
}

.program-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}


/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 10;
    padding-bottom: calc(2rem + 80px);
    /* Fill space behind player */
}

@media (max-width: 767px) {
    .footer {
        padding-bottom: calc(2rem + 110px);
        /* Taller player on mobile */
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: center;
    }
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-social h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    color: white;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn.tiktok:hover {
    background: #000000;
}

.social-btn.instagram:hover {
    background: #E1306C;
}

.social-btn.facebook:hover {
    background: #1877F2;
}

.social-btn.youtube:hover {
    background: #FF0000;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.875rem;
}