/* ==========================================================================
   CSS Variables & Design System
   ========================================================================== */
   :root {
    /* Brand Colors based on the logo */
    --clr-burgundy: #5D0A1E; /* Dark elegant red */
    --clr-burgundy-light: #7A0A2D;
    --clr-burgundy-dark: #3D0012;
    
    --clr-cream: #FDFBF7; /* Off-white / Cream background */
    --clr-beige: #E2DDD5;
    --clr-gold: #C5A059; /* Elegant gold accent */
    --clr-gold-light: #DFBF7E;
    
    --clr-text-main: #2C2A29;
    --clr-text-muted: #6C6664;
    --clr-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(92, 0, 30, 0.08);
    --shadow-lg: 0 20px 40px rgba(92, 0, 30, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-cream);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .logo-text {
    font-family: var(--font-heading);
    color: var(--clr-burgundy-dark);
    font-weight: 600;
}

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

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

ul {
    list-style: none;
}

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

.section-padding {
    padding: 6rem 0;
}

.section-padding-sm {
    padding: 3rem 0;
}

.bg-light {
    background-color: #FAFAFA;
}

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

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

.mb-5 {
    margin-bottom: 3rem;
}

.w-100 {
    width: 100%;
}

.justify-center {
    justify-content: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--clr-gold);
}

.about .section-title::after {
    left: 0;
    transform: none;
}

.section-badge {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-gold);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
}

.btn-primary {
    background-color: var(--clr-burgundy);
    color: var(--clr-white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--clr-gold);
    transition: var(--transition-normal);
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    color: var(--clr-burgundy-dark);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-normal);
}

.announcement-bar {
    background-color: var(--clr-beige);
    color: var(--clr-burgundy-dark);
    text-align: center;
    padding: 4px 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.announcement-bar span {
    display: inline-block;
}

.top-bar {
    background-color: var(--clr-burgundy);
    padding: 15px 0;
    width: 100%;
}

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

.spacer, .nav-actions {
    flex: 1;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--clr-beige);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.menu-toggle:hover {
    color: var(--clr-gold);
}

.nav-actions {
    display: flex;
    justify-content: flex-end;
}

.logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img-center {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.cart-btn {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--clr-beige);
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.cart-btn:hover {
    color: var(--clr-gold);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--clr-gold);
    color: var(--clr-burgundy-dark);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bottom-bar {
    background-color: var(--clr-beige);
    padding: 3px 0;
    width: 100%;
    box-shadow: var(--shadow-sm);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--clr-burgundy);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-burgundy-dark);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--clr-burgundy-dark);
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding-top: 130px; /* Offset for three row fixed header */
    background-color: var(--clr-cream);
    overflow: hidden;
}

.hero-split {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.hero-image-half {
    flex: 1;
    min-width: 300px;
    height: 350px;
}

.hero-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-half {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--clr-burgundy);
    position: relative;
    height: 350px;
}

/* Subtle background texture for the burgundy half */
.hero-content-half::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c5a059' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 1rem;
    text-align: center;
    color: var(--clr-cream);
}

.hero-title {
    font-size: 2.2rem;
    color: var(--clr-beige);
    line-height: 1.1;
    margin-bottom: 0.3rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.2s;
}

.hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.4s;
}

.hero .btn-primary {
    background-color: var(--clr-beige);
    color: var(--clr-burgundy-dark);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.6s;
}

.hero .btn-primary::before {
    background-color: transparent;
}
.hero .btn-primary:hover {
    color: var(--clr-burgundy);
}

/* Marquee Slider */
.marquee-wrapper {
    background-color: var(--clr-beige);
    padding: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 2px solid var(--clr-burgundy);
    display: flex;
    align-items: center;
}

.marquee {
    display: inline-block;
    animation: marquee-scroll 25s linear infinite;
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.marquee span {
    margin-right: 1.5rem;
    color: var(--clr-burgundy);
    font-weight: 600;
}

.marquee span.solid-alt {
    color: var(--clr-gold-light);
    font-weight: 700;
    text-transform: uppercase;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature i {
    color: var(--clr-gold);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.image-wrapper {
    position: relative;
    border-radius: 8px;
    padding: 1rem;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 2px solid var(--clr-gold);
    border-radius: 8px;
    z-index: -1;
    transform: translate(15px, -15px);
}

.rounded-img {
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Products Section
   ========================================================================== */
.catalog-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--clr-burgundy);
    color: var(--clr-burgundy);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    transition: var(--transition-normal);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--clr-burgundy);
    color: var(--clr-cream);
}

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

.product-card {
    background-color: var(--clr-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

/* SIN STOCK overlay */
.product-card.out-of-stock .product-img-wrapper { position: relative; }
.product-card.out-of-stock .product-img-wrapper::after {
    content: 'SIN STOCK';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 2;
}
.product-card.out-of-stock .product-img { filter: grayscale(50%); }
.product-card.out-of-stock .add-to-cart {
    background-color: var(--clr-beige);
    color: var(--clr-burgundy);
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

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

.product-img-wrapper {
    position: relative;
    padding-top: 100%; /* Square aspect ratio 1:1 */
    overflow: hidden;
    background-color: #f5f5f5;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.8rem;
    color: var(--clr-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--clr-burgundy-dark);
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-text-main);
    margin-top: auto;
    margin-bottom: 1.5rem;
}

.add-to-cart {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--clr-burgundy);
    color: var(--clr-burgundy);
    padding: 0.8rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.add-to-cart:hover {
    background-color: var(--clr-burgundy);
    color: var(--clr-white);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--clr-burgundy);
    color: var(--clr-cream);
    padding: 4rem 0 1rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.footer-brand p {
    color: rgba(253, 251, 247, 0.8);
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(253, 251, 247, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--clr-gold);
    color: var(--clr-burgundy-dark);
}

.footer-links h4, .footer-contact h4 {
    color: var(--clr-gold);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(253, 251, 247, 0.7);
    transition: var(--transition-fast);
}

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

.footer-contact p {
    color: rgba(253, 251, 247, 0.7);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(253, 251, 247, 0.1);
    color: rgba(253, 251, 247, 0.5);
    font-size: 0.9rem;
}

/* ==========================================================================
   Cart Sidebar
   ========================================================================== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--clr-white);
    z-index: 1002;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--clr-text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-cart:hover {
    color: var(--clr-burgundy);
}

.cart-items {
    padding: 1.5rem;
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.empty-cart-msg {
    text-align: center;
    color: var(--clr-text-muted);
    margin-top: 2rem;
    font-style: italic;
}

.cart-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

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

.cart-item-title {
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
    color: var(--clr-burgundy-dark);
}

.cart-item-price {
    color: var(--clr-text-main);
    font-weight: 500;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.qty-btn {
    background: #f5f5f5;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: var(--clr-text-main);
}

.remove-item {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 0.9rem;
    cursor: pointer;
    margin-left: auto;
}

.remove-item:hover {
    text-decoration: underline;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    background-color: #fafafa;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--clr-burgundy-dark);
}

/* ==========================================================================
   Lightbox (Product Image Zoom)
   ========================================================================== */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    cursor: zoom-out;
}
.lightbox-overlay.active { display: flex; }
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: lightboxIn 0.3s ease;
}
.lightbox-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
@keyframes lightboxIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.product-img { cursor: zoom-in; }

/* ==========================================================================
   Sort Dropdown (Public)
   ========================================================================== */
.sort-wrapper {
    display: flex;
}
.sort-select {
    padding: 0.6rem 2.5rem 0.6rem 1.2rem;
    border: 1px solid var(--clr-burgundy);
    border-radius: 30px;
    background: var(--clr-white);
    color: var(--clr-burgundy);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='%235D0A1E' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(93, 10, 30, 0.08);
}
.sort-select:hover, .sort-select:focus { 
    background-color: var(--clr-burgundy); 
    color: white; 
    border-color: var(--clr-burgundy);
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1'/%3E%3C/svg%3E"); 
    box-shadow: 0 4px 12px rgba(93, 10, 30, 0.2);
}

/* ==========================================================================
   Animations & Responsive
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .announcement-bar span {
        padding-left: 100%;
        animation: announcement-marquee 15s linear infinite;
    }
    
    .menu-toggle {
        display: block;
    }

    .spacer {
        display: flex;
        align-items: center;
    }

    .bottom-bar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    
    .bottom-bar.active {
        display: block;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .add-to-cart {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .hero {
        padding-top: 85px; /* Adjusting for the missing bottom-bar spacing on mobile */
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@keyframes announcement-marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}
