/* ==========================================================================
   COFFEE TIME - PREMIUM DARK-LUXURY DESIGN SYSTEM & STYLES
   ========================================================================== */

/* --- DESIGN TOKENS & VARIABLES --- */
:root {
    --bg-primary: #070606;        /* Absolute Obsidian Dark */
    --bg-secondary: #0c0b0b;      /* Charcoal Espresso Dark */
    --bg-card: #141212;           /* Warm Roasted Bean Charcoal */
    --bg-input: #1b1818;          /* Inset Form Input Dark */
    
    --accent-gold: #d39e72;       /* Creamy Caramel Gold */
    --accent-gold-hover: #bda58f; /* Silky Steamed Milk Gold */
    --accent-gold-rgb: 211, 158, 114;
    
    --text-primary: #ffffff;      /* Pure Milk White */
    --text-cream: #ebdcd0;        /* Sweet Latte Cream */
    --text-muted: #80756d;        /* Cinnamon Muted Grey */
    
    --border-premium: 1px solid rgba(211, 158, 114, 0.15);
    --border-light: 1px solid rgba(255, 255, 255, 0.04);
    
    --font-title: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --font-logo: 'Cinzel', serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    
    --shadow-premium: 0 20px 45px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 30px rgba(211, 158, 114, 0.15);
}

/* --- RESET & GLOBAL SETUP --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) var(--bg-primary);
}

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

/* Custom Scrollbar */
body::-webkit-scrollbar {
    width: 6px;
}
body::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
body::-webkit-scrollbar-thumb {
    background-color: var(--accent-gold);
    border-radius: 10px;
}

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

section {
    padding: 7rem 0;
    position: relative;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    color: var(--text-primary);
    line-height: 1.2;
    font-weight: 700;
}

p {
    font-weight: 300;
    opacity: 0.9;
}

/* --- REUSABLE UTILITIES & BUTTONS --- */
.section-badge {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
}

.section-badge.center {
    display: block;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 3rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.4rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-accent {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
    border: 1px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(211, 158, 114, 0.2);
}

.btn-accent:hover {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 158, 114, 0.3);
}

/* --- TOAST NOTIFICATIONS --- */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    background-color: var(--bg-card);
    border: 1px solid var(--accent-gold);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 400;
    box-shadow: var(--shadow-premium), var(--shadow-glow);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   HEADER NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background-color: rgba(7, 6, 6, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: var(--border-light);
    box-shadow: var(--shadow-premium);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.logo-svg {
    color: var(--accent-gold);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover .logo-svg {
    transform: rotate(360deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-logo);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Nav Links */
.navbar {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-cream);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-fast);
}

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

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

/* Header Booking Button */
.btn-book {
    display: inline-block;
    padding: 0.6rem 1.6rem;
    border: 1px solid var(--text-muted);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: var(--transition-fast);
}

.btn-book:hover {
    border-color: var(--accent-gold);
    background-color: rgba(211, 158, 114, 0.05);
    color: var(--accent-gold);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 75% 45%, rgba(211, 158, 114, 0.06) 0%, transparent 60%);
    padding-top: 8rem;
    padding-bottom: 4rem;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-cream);
    font-weight: 300;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-family: var(--font-title);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.05;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}

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

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow {
    position: absolute;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(211, 158, 114, 0.1) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
}

.hero-img {
    position: relative;
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    z-index: 2;
    box-shadow: var(--shadow-premium);
    animation: floatingEffect 8s ease-in-out infinite;
}

@keyframes floatingEffect {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1.5deg);
    }
}

/* Premium Steam Rise Animation */
.steam-container {
    position: absolute;
    top: 10%;
    left: 45%;
    width: 60px;
    height: 120px;
    z-index: 3;
    pointer-events: none;
}

.steam-rise {
    position: absolute;
    bottom: 0;
    width: 3px;
    height: 40px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.25), transparent);
    border-radius: 50%;
    filter: blur(3px);
    opacity: 0;
}

.steam-1 {
    left: 10px;
    animation: steamMotion 5s ease-in-out infinite;
}

.steam-2 {
    left: 28px;
    animation: steamMotion 5s ease-in-out infinite 1.6s;
}

.steam-3 {
    left: 46px;
    animation: steamMotion 5s ease-in-out infinite 3.2s;
}

@keyframes steamMotion {
    0% {
        transform: translateY(0) scaleX(1) translateX(0);
        opacity: 0;
    }
    15% {
        opacity: 0.4;
    }
    50% {
        transform: translateY(-50px) scaleX(1.8) translateX(6px);
        opacity: 0.2;
    }
    100% {
        transform: translateY(-100px) scaleX(2.5) translateX(-10px);
        opacity: 0;
    }
}

/* ==========================================================================
   ABOUT US & TABLE BOOKING SECTION
   ========================================================================== */
.about-booking-section {
    background-color: var(--bg-secondary);
    border-top: var(--border-light);
    border-bottom: var(--border-light);
}

.about-booking-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

/* Left Column: Description */
.about-text-col {
    display: flex;
    flex-direction: column;
}

.about-paragraphs p {
    font-size: 1.02rem;
    margin-bottom: 1.5rem;
    color: var(--text-cream);
    line-height: 1.7;
}

.about-closing {
    font-family: var(--font-title);
    font-style: italic;
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Center Column: Image */
.about-image-col {
    display: flex;
    justify-content: center;
}

.about-img-frame {
    position: relative;
    padding: 10px;
    background: linear-gradient(135deg, rgba(211, 158, 114, 0.2), transparent);
    border-radius: 4px;
    box-shadow: var(--shadow-premium);
}

.about-img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    filter: grayscale(10%) contrast(105%);
    transition: var(--transition-smooth);
}

.about-img-frame:hover .about-img {
    transform: scale(1.02);
}

/* Right Column: Booking Form */
.booking-col {
    display: flex;
    justify-content: center;
}

.booking-card {
    background-color: var(--bg-card);
    border: var(--border-premium);
    padding: 3rem 2.2rem;
    width: 100%;
    max-width: 400px;
    border-radius: 4px;
    box-shadow: var(--shadow-premium);
}

.booking-card-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(211, 158, 114, 0.3);
    transition: var(--transition-fast);
}

.input-group:focus-within {
    border-bottom-color: var(--accent-gold);
}

.input-icon {
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    opacity: 0.8;
    display: flex;
    align-items: center;
}

.booking-form input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.8rem 0.5rem 0.8rem 2.2rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.booking-form input::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

.btn-submit {
    margin-top: 1rem;
    background-color: var(--accent-gold);
    color: var(--bg-primary);
    border: 1px solid var(--accent-gold);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.9rem 0;
    border-radius: 3px;
    transition: var(--transition-fast);
}

.btn-submit:hover {
    background-color: transparent;
    color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features-section {
    background-color: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.feature-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    transition: var(--transition-fast);
}

.feature-icon-wrapper {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.15) translateY(-5px);
}

.feature-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   MENU SECTION
   ========================================================================== */
.menu-section {
    background-color: var(--bg-secondary);
    border-top: var(--border-light);
    border-bottom: var(--border-light);
}

.menu-header {
    margin-bottom: 4.5rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.menu-col-title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 3rem;
    text-align: left;
    border-left: 2px solid var(--accent-gold);
    padding-left: 1rem;
}

.menu-items-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.menu-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.menu-item-img-wrapper {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--bg-card);
    border: var(--border-premium);
    padding: 2px;
}

.menu-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.menu-item:hover .menu-item-img {
    transform: scale(1.1);
}

.menu-item-details {
    flex-grow: 1;
}

.menu-item-details.no-thumb {
    padding-left: 0;
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 0.4rem;
}

.menu-item-name {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.menu-item-dot-leader {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(211, 158, 114, 0.4);
    margin: 0 1rem;
}

.menu-item-price {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-gold);
}

.menu-item-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section {
    background-color: var(--bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 3px;
    border: var(--border-light);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 6, 6, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-overlay span {
    font-family: var(--font-title);
    color: var(--accent-gold);
    font-size: 1.3rem;
    font-style: italic;
    letter-spacing: 1px;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ==========================================================================
   PROMO SECTION
   ========================================================================== */
.promo-section {
    background: linear-gradient(rgba(7, 6, 6, 0.85), rgba(7, 6, 6, 0.85)), url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10rem 0;
}

.promo-container {
    display: flex;
    justify-content: center;
}

.promo-content {
    background-color: rgba(20, 18, 18, 0.85);
    border: var(--border-premium);
    padding: 4rem 3rem;
    max-width: 800px;
    text-align: center;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-premium);
}

.promo-badge {
    display: inline-block;
    color: var(--accent-gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.promo-title {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.promo-text {
    font-size: 1.05rem;
    color: var(--text-cream);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: #040303;
    border-top: var(--border-light);
    padding: 6rem 0 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-logo .logo-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-brand-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 2rem;
    max-width: 350px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    color: var(--text-cream);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-list a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact-info li {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.92rem;
}

.contact-label {
    color: var(--text-primary);
    font-weight: 500;
}

.contact-value {
    color: var(--text-muted);
}

.contact-value a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-value a:hover {
    color: var(--accent-gold);
}

/* Footer Bottom */
.footer-bottom {
    border-top: var(--border-light);
    padding-top: 2.5rem;
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-divider {
    color: var(--accent-gold);
    opacity: 0.7;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet (Large/Medium Devices) */
@media screen and (max-width: 1024px) {
    section {
        padding: 5rem 0;
    }
    
    .about-booking-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-image-col {
        grid-row: 1; /* Place image at top */
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }
    
    .footer-col-brand {
        grid-column: span 2;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .main-header {
        padding: 1rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: var(--bg-card);
        border-left: var(--border-premium);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition-smooth);
        z-index: 100;
        padding: 2rem;
    }
    
    .navbar.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .header-actions {
        margin-right: 1.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image-wrapper {
        grid-row: 1;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col-brand {
        grid-column: span 1;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
