/* =========================================
   PRC Charity - Modern Standard Styles
   ========================================= */

/* --- Reset and Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Core Palette - Vibrant & Trustworthy */
    --primary-blue: #2563EB;
    --primary-dark: #1E40AF;
    --hope-orange: #01218d;
    --hope-glow: #FFedd5;
    --growth-green: #10B981;
    --warm-yellow: #F59E0B;
    --deep-purple: #8B5CF6;
    --passionate-red: #EF4444;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    --grad-orange: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    --grad-rainbow: linear-gradient(to right, #2563EB, #8B5CF6, #F97316);
    --grad-overlay: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
    /* Neutral Dark */

    /* Neutrals */
    --text-dark: #111827;
    --text-light: #4B5563;
    --bg-light: #F3F4F6;
    --bg-white: #FFFFFF;
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-800: #1F2937;

    /* Spacing & Accents */
    --section-spacing: 6rem;
    --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* --- Typography & Buttons --- */
.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    /* margin: 0 auto; removed absolute center hack */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--grad-orange);
    border-radius: 2px;
}

.impact-content {
    padding: 1.5rem;
    text-align: center;
}

.text-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.impact-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.impact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.impact-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.impact-link:hover {
    color: var(--dark-blue);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--grad-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(249, 115, 22, 0.3);
    background: linear-gradient(135deg, #ea580c, #c2410c);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* --- Header & Navigation --- */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
}

.nav-logo img {
    height: 50px;
}

.nav-logo span {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--grad-orange);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--hope-orange);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
    padding: 0;
}

.nav-toggle .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 3px;
    position: absolute;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.nav-toggle .bar:nth-child(1) {
    top: 0;
}

.nav-toggle .bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle .bar:nth-child(3) {
    bottom: 0;
}

.nav-toggle.active .bar:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background-color: var(--hope-orange);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    background-color: var(--hope-orange);
}

.nav-donate-btn {
    background: var(--grad-orange);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.nav-donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

/* --- Hero Slideshow (Ken Burns Effect) --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1);
    background-size: cover;
    background-position: center;
    animation: kenBurns 20s infinite;
}

/* Slide Delays for smooth loop (5 images * 5s interval = 25s loop, but let's do 6s crossfade) */
/* We will use a cycle of 5 images. */
.slide:nth-child(1) {
    background-image: url('img/notfound.jpg');
    animation-delay: 0s;
}

.slide:nth-child(2) {
    background-image: url('img/notfound.jpg');
    animation-delay: 5s;
}

.slide:nth-child(3) {
    background-image: url('img/notfound.jpg');
    animation-delay: 10s;
}

.slide:nth-child(4) {
    background-image: url('img/notfound.jpg');
    animation-delay: 15s;
}

.slide:nth-child(5) {
    background-image: url('img/notfound.jpg');
    animation-delay: 20s;
}

@keyframes kenBurns {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* Overlay on top of slides */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--grad-overlay);
    /* Neutral Dark */
    z-index: 1;
    opacity: 0.8;
    /* Slightly see-through to show images */
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    color: var(--white);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}


/* --- Cards & Impact Grid --- */
.impact-grid,
.stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.impact-card,
.story-card,
.stat-box {
    background: var(--white);
    padding: 0 0 2rem 0;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.stat-box {
    padding: 2rem;
}

.impact-card:hover,
.story-card:hover,
.stat-box:hover {
    transform: translateY(-12px);
    box-shadow: var(--card-shadow-hover);
}

.impact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-rainbow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.impact-card:hover::after {
    transform: scaleX(1);
}

.impact-card img,
.story-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.impact-card:hover img,
.story-card:hover img {
    transform: scale(1.05);
}

.impact-card h3,
.impact-card p,
.impact-card .impact-stat {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    z-index: 2;
}

.impact-card h3 {
    margin-top: 1rem;
}

.impact-link,
.story-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--hope-orange), #ea580c);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(249, 115, 22, 0.2);
    border: none;
}

.impact-link:hover,
.story-link:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 15px rgba(249, 115, 22, 0.3);
    background: linear-gradient(135deg, #ea580c, var(--hope-orange));
    color: white;
}

/* Responsive Navigation */
@media (max-width: 1024px) {
    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 4rem 2rem;
        gap: 2rem;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        font-size: 1.2rem;
        display: block;
        padding: 1rem;
    }

    .nav-cta {
        width: 100%;
        margin-top: 1rem;
    }

    .nav-donate-btn {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Menu Overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Explore Icons */
.impact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    border: 4px solid var(--white);
}

#pages .impact-card {
    padding-top: 3rem;
    overflow: visible;
    margin-top: 40px;
}

/* --- Sections --- */
.content-section,
.about,
.donation {
    padding: var(--section-spacing) 0;
}

/* Donation Styling */
.donation {
    background: linear-gradient(135deg, #fff1f2 0%, #fff7ed 100%);
}

.donation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, var(--hope-orange), var(--primary-blue), var(--growth-green));
}

/* Stories */
.stories {
    padding: var(--section-spacing) 0;
    background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1469571486292-0ba58a3f068b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--white);
}

.stories .section-title {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: initial;
}

.story-content {
    padding: 2rem;
    color: var(--text-dark);
}

.story-link {
    background: var(--primary-blue);
    margin-bottom: 2rem;
}

/* Also fix stat number text clip */
.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

/* --- Core Values Section --- */
.core-values {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.value-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.value-content {
    padding: 1.5rem;
}

.value-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
}

.value-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    background: linear-gradient(to bottom, #1e293b, #0f172a);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 5px solid;
    border-image: var(--grad-rainbow) 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h1 {
    color: var(--warm-yellow);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--hope-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--hope-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-600);
    color: var(--gray-300);
}

/* --- About Section --- */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.about-text {
    flex: 1;
    min-width: 250px;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
}


/* --- About Section --- */
.about {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
}

.about .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.about-text h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}



.about-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.about-values .value-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.about-values .value-item i {
    color: var(--hope-orange);
    font-size: 1.2rem;
}


/* --- Responsive --- */
@media (max-width: 1024px) {

    .impact-grid,
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {

    .impact-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .core-values-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Separate Page Styles --- */
.section {
    padding: var(--section-spacing) 0;
}

.text-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.text-block h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.text-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    height: 60vh;
}

/* --- Donate CTA Section --- */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--hope-orange), #ea580c);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
}

.cta-content .btn {
    background: var(--white);
    color: var(--hope-orange);
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-content .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: var(--white);
    color: #c2410c;
}

/* =========================
   STANDARD PRC FOOTER STYLES (Added for consistency)
========================= */

/* --- General Footer Styling --- */
footer {
    background: linear-gradient(180deg, #000080 50%, #006eff 100%) !important;
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    border-top: none !important;
    /* Override charity border if present */
    border-image: none !important;
}

/* --- Main Center Heading Styling (H2) --- */
.footer-main-heading {
    max-width: 1200px;
    margin: 0 auto 30px;
    text-align: center;
    border-bottom: 2px solid #ffd000;
    padding-bottom: 10px;
}

.footer-main-heading h2 {
    font-size: 1.8em;
    font-family: 'Times New Roman', Times, serif;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Container for Sections --- */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

/* --- Individual Section Styling --- */
.footer-section {
    flex-basis: 200px;
    flex-grow: 1;
    text-align: center;
}

/* --- Heading Styling (NOW USING H1) --- */
.footer-section h1 {
    font-size: 1.1em;
    color: #1abc9c;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- List Styling --- */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section a {
    color: white !important;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

/* --- Social Icons Styling --- */
.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icons a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    color: white !important;
    background-color: #bdc3c7;
    transition: transform 0.2s, background-color 0.3s;
    padding: 0 !important;
    /* Reset charity styles */
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* Applying Brand Colors for recognition */
.social-icons .wikipedia {
    background-color: #919191 !important;
}

.social-icons .youtube {
    background-color: #ff0000 !important;
}

.social-icons .facebook {
    background-color: #006eff !important;
}

.social-icons .instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

.social-icons .x {
    background-color: #000000 !important;
}

/* --- Copyright/Bottom Section --- */
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    border-top: 1px solid #4a637a;
    padding-top: 20px;
    text-align: center;
    font-size: 1.2em;
    color: #bdc3c7;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
}