/* Ella Rises - Duolingo-Inspired Modern Design */

/* Import Google Fonts - TT Milk Script approximation + Brand Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Montserrat:wght@400;500;600;700;800&family=Pacifico&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Ella Rises Official Color Palette */
    --primary-pink: #F9AFB1;
    --dark-charcoal: #3A3F3B;
    --sage-green: #9AB59D;
    --burgundy: #CE325B;
    --light-pink: #FFD8D1;
    --cream: #F9F5EA;
    --purple: #978EC4;
    --dusty-blue: #99B7C6;
    --peach: #F4B092;
    --white: #FFFFFF;
    --text-dark: #3A3F3B;
    --text-medium: #6B6B6B;
    --border-color: #E8E5DD;
    
    /* Duolingo-inspired additions */
    --success-green: #9AB59D;
    --hover-lift: -4px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Headings */
h1, h2, h3 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
}

h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Navigation - Duolingo Style */
nav {
    background-color: var(--white);
    padding: 1rem 2rem;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--cream);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Achievement Badge Styling */
.achievement-badge {
    cursor: pointer;
}

.achievement-badge:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 30px rgba(139, 21, 56, 0.4) !important;
}

.achievement-badge:active {
    transform: translateY(-4px) scale(1.01);
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.achievement-badge:hover .achievement-icon {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(-5px);
    }
    75% {
        transform: translateY(-8px);
    }
}

/* Milestones grid responsive */
.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Event Badge Styling */
.event-badge {
    cursor: pointer;
}

.event-badge:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 30px rgba(154, 181, 157, 0.4) !important;
}

.event-badge:active {
    transform: translateY(-4px) scale(1.01);
}

.event-badge:hover .event-icon {
    animation: bounce 0.6s ease;
}

/* ============================================
   UPDATED SIDEBAR NAVIGATION STYLES
   Replace the sidebar styles in your style.css with these
   ============================================ */

/* Sidebar Toggle Button - Now in Navigation Bar */
.sidebar-toggle {
    background: linear-gradient(135deg, var(--burgundy), #A3274A);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(139, 21, 56, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.sidebar-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.4);
}

.sidebar-toggle .icon {
    font-size: 1.1rem;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* Admin Sidebar Container */
.admin-sidebar {
    position: fixed;
    left: -350px;
    top: 0;
    width: 320px;
    height: 100%;
    background: linear-gradient(180deg, var(--light-pink) 0%, var(--cream) 100%);
    z-index: 1003;
    transition: left 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    border-right: 4px solid var(--burgundy);
}

.admin-sidebar.active {
    left: 0;
}

/* Sidebar Header */
.sidebar-header {
    background: linear-gradient(135deg, var(--burgundy), #A3274A);
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 3px solid var(--primary-pink);
}

.sidebar-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

/* Sidebar Close Button */
.sidebar-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-close:hover {
    background: white;
    color: var(--burgundy);
    transform: rotate(90deg);
}

/* Sidebar Navigation Container */
.sidebar-nav {
    padding: 2rem 1rem;
}

/* Sidebar Navigation Items */
.sidebar-nav-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 16px;
    border: 3px solid var(--border-color);
    transition: all 0.3s ease;
    overflow: hidden;
}

.sidebar-nav-item:hover {
    transform: translateX(8px);
    border-color: var(--primary-pink);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sidebar-nav-item a {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.05rem;
    gap: 1rem;
}

.sidebar-nav-item .icon {
    font-size: 1.8rem;
    min-width: 35px;
    text-align: center;
}

/* Active Page Highlighting */
.sidebar-nav-item.active {
    background: linear-gradient(135deg, var(--burgundy), #A3274A);
    border-color: var(--burgundy);
}

.sidebar-nav-item.active a {
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .admin-sidebar {
        width: 280px;
        left: -280px;
    }

    .sidebar-toggle {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .sidebar-toggle .icon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sidebar-toggle span:not(.icon) {
        display: none;
    }
    
    .sidebar-toggle {
        padding: 0.6rem;
        min-width: 40px;
        justify-content: center;
    }
}

/* Events grid responsive */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 480px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .milestones-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .milestones-grid {
        grid-template-columns: 1fr;
    }
}

.milestone-card.achieved {
    border-color: var(--sage-green) !important;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: color 0.2s ease;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

nav a:hover {
    color: var(--burgundy);
}

.nav-logo {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--burgundy);
    text-transform: none;
}

/* Hero Section - Duolingo Style with Illustrations */
/* Hero Section - Duolingo Style with Illustrations */
.hero {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--cream) 100%);
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--primary-pink);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: var(--sage-green);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--burgundy);
    line-height: 1.2;
}

.hero p {
    font-size: 1.35rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
/* Hero Section - Duolingo Style with Background Image */
.heroimg {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--cream) 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Add background image with fade effect */
.heroimg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/hero-background.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3; /* Adjust this value: 0 = invisible, 1 = fully visible */
    z-index: 0;
}

/* Keep the decorative circles but adjust z-index */
.heroimg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: var(--sage-green);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
}

.heroimg-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.heroimg h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--burgundy);
    line-height: 1.2;
}

.heroimg p {
    font-size: 1.35rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
}

.heroimg-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Alternative hero section with different image */
.heroimg-alt {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--cream) 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.heroimg-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/different-hero.jpg'); /* Your new image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

/* Buttons - Duolingo Style */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--burgundy);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 0 0 #A3274A, var(--shadow-md);
    position: relative;
    top: 0;
}

.btn:hover {
    top: -2px;
    box-shadow: 0 6px 0 0 #A3274A, var(--shadow-lg);
}

.btn:active {
    top: 2px;
    box-shadow: 0 2px 0 0 #A3274A, var(--shadow-sm);
}

.btn-primary {
    background-color: var(--burgundy);
    box-shadow: 0 4px 0 0 #A3274A, var(--shadow-md);
}

.btn-secondary {
    background-color: var(--sage-green);
    box-shadow: 0 4px 0 0 #7A9B7E, var(--shadow-md);
    color: white;
}

.btn-secondary:hover {
    box-shadow: 0 6px 0 0 #7A9B7E, var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border: 3px solid var(--burgundy);
    color: var(--burgundy);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--burgundy);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-full {
    width: 100%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Cards - Duolingo Style */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background-color: white;
    padding: 2.5rem;
    border: 3px solid var(--border-color);
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    top: 0;
}

.feature-card:hover {
    top: -8px;
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-pink), var(--light-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    color: var(--burgundy);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1.05rem;
} 

/* Feature Cards - Duolingo Style with Hover Animation */
.features1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature1-card {
    background-color: white;
    padding: 2.5rem;
    border: 3px solid var(--border-color);
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    top: 0;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Background image for feature cards - CLEARER */
.feature1-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.85; /* 70% opacity - clear and visible */
    z-index: 0;
    transition: opacity 0.3s ease;
}

/* White overlay box - hidden by default, appears on hover */
.feature1-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.75); /* White box at 95% opacity */
    border-radius: 20px;
    opacity: 0; /* Hidden by default */
    z-index: 0;
    transition: opacity 0.3s ease;
}

/* Show white box on hover */
.feature1-card:hover::after {
    opacity: 1;
}

/* Specific background images for each card */
.feature1-card:nth-child(1)::before {
    background-image: url('/images/education-access.jpg');
}

.feature1-card:nth-child(2)::before {
    background-image: url('/images/cultural-pride.jpeg');
}

.feature1-card:nth-child(3)::before {
    background-image: url('/images/leadership-skills.jpeg');
}

/* Make sure content stays on top */
.feature1-card > * {
    position: relative;
    z-index: 1;
}

.feature1-card:hover {
    top: -8px;
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-lg);
}

/* Hide icon */
.feature1-icon {
    display: none;
}

/* Title - centered with white background box */
.feature1-card h3 {
    color: var(--burgundy);
    font-size: 1.8rem;
    margin-bottom: 0;
    transition: all 0.3s ease;
    font-weight: 700;
    padding: 1rem 1.5rem; /* Add padding around the title */
    background-color: rgba(255, 255, 255, 0.55); /* White box at 85% opacity */
    border-radius: 16px; /* Rounded corners */
    display: inline-block; /* Makes the box fit the text size */
}

.feature1-card:hover h3 {
    margin-bottom: 1rem;
    transform: translateY(-20px); /* Moves up */
}

/* Paragraph - hidden by default, appears on hover */
.feature1-card p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.05rem;
    opacity: 0; /* Hidden by default */
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 0;
}

.feature1-card:hover p {
    opacity: 1; /* Appears on hover */
    max-height: 500px; /* Expands to show text */
    margin-top: 0.5rem;
}

/* Forms - Modern Duolingo Style */
.form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--cream);
}

.form-container h2 {
    color: var(--burgundy);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 3px solid var(--border-color);
    border-radius: 16px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s ease;
    background-color: white;
    font-weight: 500;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 4px rgba(249, 175, 177, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Messages - Duolingo Style */
.success-message {
    background-color: var(--sage-green);
    color: white;
    padding: 1.25rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.error-message {
    background-color: var(--burgundy);
    color: white;
    padding: 1.25rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    box-shadow: var(--shadow-md);
}

/* Footer */
footer {
    background-color: var(--dark-charcoal);
    color: var(--cream);
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 5rem;
}

footer p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Donation Amount Options */
.amount-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.amount-btn {
    padding: 1.25rem;
    background-color: white;
    border: 3px solid var(--border-color);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    top: 0;
}

.amount-btn:hover {
    top: -4px;
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-md);
}

.amount-btn.selected {
    background-color: var(--burgundy);
    color: white;
    border-color: var(--burgundy);
    box-shadow: 0 4px 0 0 #A3274A, var(--shadow-md);
}

/* Stats/Numbers Section */
.stats-section {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--dusty-blue) 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.stat-item h3 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.stat-item p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Stats image styling */
.stats-image-container {
    max-width: 800px;
    margin: 2rem auto 0;
}

.stats-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    /* border: 4px solid white; */
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); */
}

/* CTA Section */
.cta-section {
    background-color: var(--light-pink);
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 32px;
    margin: 5rem 2rem;
}

.cta-section h2 {
    font-size: 3rem;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.table-container {
  max-height: 600px;   /* adjust as needed */
  overflow-y: auto;    /* vertical scrollbar */
}

.table-container table {
  width: 100%;
  border-collapse: collapse;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.15rem;
    }
    
    .nav-left, .nav-right {
        gap: 1rem;
    }
    
    nav a {
        font-size: 0.85rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .stat-item h3 {
        font-size: 3rem;
    }
    
    .cta-section h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 3rem 1.5rem;
    }
    
    .amount-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
}

/* Navigation Logo Image - Top Left */
.nav-logo {
    display: block;
    width: 120px;
    height: 70px;
    background-image: url('/images/ella-logo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-indent: -9999px; /* Hides the text */
    transition: transform 0.2s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

/* Footer with centered logo */
footer {
    background-color: var(--dark-charcoal);
    color: var(--cream);
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 5rem;
}

footer .footer-logo {
    display: block;
    width: 300px;
    height: auto;
    margin: 0 auto 1rem;
}

footer p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
