:root {
    --primary-light: white;
    --secondary-light: white;
    --text-light: #333333;
    --primary-dark: #1a1a1a;
    --secondary-dark: #2a2a2a;
    --text-dark: white;
    --primary-orange: #332010;
    --secondary-orange: #663300;
    --text-orange: white;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    min-height: 100vh;
}



/* Dark Theme */
body.dark {
    background-color: var(--primary-dark);
    color: var(--text-dark);
}

.header,
.footer {
    background-color: var(--secondary-dark);
}



.header,
.footer {
    background-color: var(--secondary-orange);
    color: white;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header img {
    margin-inline-start: 30px;
}


.dark .header {
    background-color: var(--secondary-dark);
    color: var(--text-dark);
}



/* Auth button */
.sign-in-btn {
    transition: all 0.3s ease;
}

/* Discount Banner */
.discount-banner {
    position: relative;
    overflow: hidden;
}

.discount-marquee {
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.discount-banner:hover .discount-marquee {
    animation-play-state: paused;
}