

/* Custom styles for the 3rd Generation Coffee Shop design */
html, body {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth; /* Add smooth scrolling for better UX */
}

#accent-f {
    color: var(--color-accent);
}

#accent-b {
    background-color: var(--color-accent);
}

.accent-f {
    color: var(--color-accent);
}

.accent-b {
    background-color: var(--color-accent);
}

#secondary-f {
    color: var(--color-secondary);
}

#secondary-b {
    background-color: var(--color-secondary);
}

.secondary-b {
    background-color: var(--color-secondary);
}

#tertiary-f {
    color: var(--color-tertiary);
}

#tertiary-b {
    background-color: var(--color-tertiary);
}

#primary-f {
    color: var(--color-primary);
}

.primary-f {
    color: var(--color-primary);
}

#primary-b {
    background-color: var(--color-primary);
}

.primary-b {
    background-color: var(--color-primary);
}

/* General Body Styles */
body {
    background-color: var(--color-primary); /* Light beige background from image */
    color: #4a3f35; /* Default text color, can be overridden by theme */
    font-family: var(--font-body, 'Open Sans', sans-serif); /* Use theme font or default */
    line-height: 1.6;
    font-size: 16px;
}

/* Theme Color Variables (will be populated by theme.js) */
:root {
    --color-primary: #fdf8f3; /* Default light beige */
    --color-secondary: #d34e38; /* Default terracotta */
    --color-tertiary: #4a3f35; /* Default dark brown */
    --color-accent: #ffad36; /* Default accent */
    --font-heading: 'Bebas Neue', sans-serif; /* Default heading */
    --font-body: 'Open Sans', sans-serif; /* Default body */
}

/* Header Styles */
header {
    background-color: var(--color-primary, #fdf8f3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

header #brand-name {
    color: var(--color-secondary, #d34e38);
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    text-transform: uppercase;
    letter-spacing: 1px;
}

header nav a {
    color: var(--color-secondary, #d34e38);
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    text-transform: uppercase;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}
header nav a:hover {
    color: var(--color-accent, #ffad36);
}
header nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-accent, #ffad36);
    transition: width 0.3s ease;
}
header nav a:hover::after {
    width: 100%;
}

/* Hero Slider Section */
#home {
    background-color: var(--color-secondary, #d34e38);
    color: var(--color-primary, #fdf8f3);
    min-height: auto; /* Override previous min-height */
    padding-top: 8rem; /* Adjust padding */
    padding-bottom: 4rem;
}

#home .container {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center content */
    text-align: left; /* Align text left within the container */
}

@media (min-width: 768px) {
    #home .container {
        flex-direction: row; /* Side-by-side on larger screens */
        justify-content: space-between;
        align-items: center;
    }
    #home .hero-content {
        max-width: 50%;
    }
    #home .hero-image-container {
        max-width: 45%;
    }
}

#home h1 {
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    font-size: 2.5rem; /* Adjust size */
    margin-bottom: 1rem;
    color: var(--color-primary, #fdf8f3);
}

#home p {
    font-family: var(--font-body, 'Open Sans', sans-serif);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-primary, #fdf8f3);
    opacity: 0.9;
}

#home a.cta-button {
    background-color: var(--color-primary, #fdf8f3);
    color: var(--color-secondary, #d34e38);
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, color 0.3s;
}

#home a.cta-button:hover {
    background-color: var(--color-accent, #ffad36);
    color: var(--color-primary, #fdf8f3);
}

#home .hero-image-container img {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
}

/* New Hero Slider Styles */
#home {
    /* Remove background color from the section itself, it's now on the container */
    background-color: var(--color-primary);
    color: var(--color-secondary, #d34e38); /* Default text color for section if needed outside slider */
    padding-top: 6rem; /* Adjust top padding if header height changed */
    padding-bottom: 2rem; /* Reduced bottom padding */
    overflow: visible; /* Allow potential overflow for shadow */
}

.hero-slider-container {
    position: relative;
    background-color: var(--color-secondary, #d34e38);
    border-radius: 1.5rem; /* 2xl */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    /* Add background texture if available */
    /* background-image: url('../images/texture-bg.png'); */
    background-size: cover;
    background-position: center;
    max-height: 800px;
    min-height: 200%;
}

@media (max-width: 900px) { /* md breakpoint */
    .hero-slider-container {
        min-height: 700px; /* Adjust as needed */;
    }
}

.hero-slide {
    display: none; /* Hide slides by default */
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out; /* Smooth transitions */
    position: absolute; /* Position slides on top of each other */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(0); /* Default position */
}

.hero-slide.active {
    display: block; /* Show active slide */
    opacity: 1;
    position: relative; /* Take up space in the container */
    z-index: 1; /* Ensure active slide is above others */
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 1rem; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem; /* space-x-2 */
    z-index: 10; /* Ensure dots are above slides */
    opacity: 0;
    transition: opacity 0.3s ease; /* Smooth transition for controls visibility */
}


.control-dot {
    width: 10px;
    height: 10px;
    background-color: var(--color-primary, #fdf8f3);
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.control-dot.active {
    opacity: 1;
}

.slide-content {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    align-items: center;
    justify-content:center;
    padding: 2rem; /* p-8 */
    gap: 2rem; /* gap-8 */
    min-height: 400px; /* Ensure minimum height */
}

.hero-text-content {
    text-align: left;
    color: var(--color-primary, #fdf8f3);
    width: 100%; /* Full width on mobile */
}

.hero-text-content img.filter {
    filter: brightness(0) invert(1); /* Make logo white */
}

.hero-text-content h1 {
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    font-size: 2.25rem; /* text-3xl */
    /*/font-weight: bold;*/
    margin-bottom: 0.75rem; /* mb-3 */
    line-height: 1.2; /* leading-tight */
    color: var(--color-primary, #fdf8f3);
}

.hero-text-content p {
    font-family: var(--font-body, 'Open Sans', sans-serif);
    font-size: 1rem; /* text-base */
    margin-bottom: 1.5rem; /* mb-6 */
    opacity: 0.9;
    color: var(--color-primary, #fdf8f3);
}

.hero-text-content .cta-button {
    display: inline-block;
    background-color: var(--color-primary, #fdf8f3);
    color: var(--color-secondary, #d34e38);
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    text-transform: uppercase;
    letter-spacing: 0.05em; /* tracking-wider */
    padding: 0.75rem 2rem; /* px-8 py-3 */
    border-radius: 0.5rem; /* rounded-lg */
    font-size: 1.125rem; /* text-lg */
    transition: background-color 0.3s, color 0.3s;
}

.hero-text-content .cta-button:hover {
    background-color: var(--color-accent, #ffad36);
    color: var(--color-primary, #fdf8f3);
}

.hero-image-content {
    width: 100%; /* Full width on mobile */
    display: flex;
    justify-content: center;
}

.hero-image-content img {
    border-radius: 0.75rem; /* rounded-lg */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 24rem; /* max-w-sm */
    height: auto;
    object-fit: cover;
}

/* Responsive adjustments for the slider */
@media (min-width: 768px) { /* md breakpoint */
    #home {
        padding-top: 7rem; /* Adjust if needed */
    }
    .slide-content {
        flex-direction: row;
        padding: 3rem; /* md:p-12 */
        gap: 3rem; /* md:gap-12 */
        min-height: 450px;
    }
    .hero-text-content {
        width: 50%; /* md:w-1/2 */
    }
    .hero-text-content h1 {
        font-size: 2.75rem; /* md:text-4xl */
        margin-bottom: 1rem; /* md:mb-4 */
    }
    .hero-text-content p {
        font-size: 1.125rem; /* md:text-lg */
    }
    .hero-image-content {
        width: 50%; /* md:w-1/2 */
        justify-content: flex-end; /* md:justify-end */
    }
    .hero-image-content img {
        max-width: 28rem; /* md:max-w-md */
    }
}

@media (min-width: 1024px) { /* lg breakpoint */
    .slide-content {
        padding: 4rem; /* lg:p-16 */
        min-height: 500px;
    }
    .hero-text-content h1 {
        font-size: 3.25rem; /* lg:text-5xl */
    }
    .hero-image-content img {
        max-width: 80%; /* lg:max-w-lg */
        max-height: 30rem;
    }
}

/* Slider Controls (Optional Styling) */
.slider-controls {
    position: absolute;
    bottom: 1rem; /* bottom-4 */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem; /* space-x-2 */
}

.control-dot {
    width: 0.75rem; /* Adjust size */
    height: 0.75rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.control-dot.active {
    background-color: white;
}

/* Remove old Hero styles no longer needed */
/* #home .container { ... } */
/* #home h1 { ... } */
/* #home p { ... } */
/* #home a.cta-button { ... } */
/* #home .hero-image-container img { ... } */

/* Tag Section */

/* Tag Section */
.tag-section {
    padding: 2rem 1rem;
    background-color: var(--color-primary, #fdf8f3);
    margin-top: -1rem;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    max-width: 900px;
    margin: 0 auto;
}

.tag {
    border: 1px solid var(--color-secondary, #d34e38);
    color: var(--color-secondary, #d34e38);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-body, 'Open Sans', sans-serif);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.tag:hover {
    background-color: var(--color-secondary, #d34e38);
    color: var(--color-primary, #fdf8f3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Info Blocks Section */
.info-blocks-section {
    padding: 3rem 1rem 3rem;
    background-color: var(--color-primary, #fdf8f3);
}

.info-blocks-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-block {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background-color: var(--color-primary); /* Default white, can adjust */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.info-block.highlight {
    background-color: var(--color-secondary, #d34e38);
    color: var(--color-primary, #fdf8f3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}


.info-block.highlight h3 {
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1.5px;
}

.info-block.text-block {
    padding: 2.5rem;
    background-color: var(--color-primary);/* Slightly darker beige */
    
}

.info-block.text-block h3 {
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    color: var(--color-secondary, #d34e38);
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.info-block.text-block p {
    font-family: var(--font-body, 'Open Sans', sans-serif);
    line-height: 1.6;
    color: #5c5046; /* Darker text for readability */
}

.info-block.image-block {
    position: relative;
}
.overlay-text1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.25), transparent);
    font-size: 1.2rem;
}
.overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    align-items: center;
    justify-content: center;

    /* Add any additional styling you want for the text */
    color: var(--color-primary);
}

.info-block.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#about-block {
    color: var(--color-primary);
    background-image: linear-gradient(rgba(74, 63, 53, 0.7), rgba(74, 63, 53, 0.7)), 
                      url('/images/about.jpg');
    background-color: var(--color-tertiary);
    background-size: cover;
    position: relative;
}

#about-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-tertiary);
    opacity: 0.5;
    z-index: 0;
}

#about-block .about-content {
    position: relative;
    z-index: 1;
}

.info-block.image-block .overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.25), transparent);
    color: var(--color-primary);
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    font-size: 1.5rem;

}

/* Gallery Section (Highlights) */
#gallery {
    background-color: var(--color-primary, #fdf8f3);
    padding: 4rem 1rem;
}

#gallery h2 {
    color: var(--color-secondary, #d34e38);
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    margin-bottom: 0.5rem;
}

#gallery .section-subtitle {
    font-family: var(--font-body, 'Open Sans', sans-serif);
    max-width: 600px;
    margin-bottom: 2rem;
}

.section-subtitle {
    font-family: var(--font-body, 'Open Sans', sans-serif);
    max-width: 600px;
    margin-bottom: 2rem;
    opacity: 70%;
}

.gallery-grid {
    display: grid;
    gap: 1.2rem; /* Slightly increased gap */
    grid-template-columns: repeat(2, 1fr); /* Default to 2 columns for smaller screens */
    grid-auto-rows: minmax(200px, auto); /* Adjust row height */
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 16px; /* Match other rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative; /* For potential captions later */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

/* Bento Grid Layout - Larger Screens (e.g., md and up) */
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on larger screens */
        grid-auto-rows: minmax(180px, auto); /* Adjust row height for 4 columns */
    }

    /* Example Bento Spans (Adjust based on the 8 images) */
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 2;
    }

    .gallery-item:nth-child(5) {
        grid-row: span 2;
    }

    .gallery-item:nth-child(7) {
        grid-column: span 2;
    }
}

/* Menu Section */
#menu {
    background-color: var(--color-primary, #fdf8f3);
    padding: 4rem 1rem;
}

#menu .menu-header {
    margin-bottom: 3rem;
}



h2 {
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    color: var(--color-secondary, #d34e38);
}

.info-blocks-container h2 {
    color: var(--color-primary);
}

#menu .section-subtitle {
    font-family: var(--font-body, 'Open Sans', sans-serif);
    color: #777;
}

.menu-content {
    border: 2px solid var(--color-secondary, #d34e38);
    border-radius: 16px;
    padding: 3.5rem 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: var(--color-primary);
    backdrop-filter: blur(10px);
}

.menu-category h3 {
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    color: var(--color-secondary, #d34e38);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.8rem;
    border-bottom: 2px solid rgba(211, 78, 56, 0.3); /* Light border under category */
    padding-bottom: 0.8rem;
    position: relative;
    display: inline-block;
}

.menu-category h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--color-secondary, #d34e38);
}

.menu-item {
    margin-bottom: 1.2rem;
}

.menu-item-name {
    font-family: var(--font-body, 'Open Sans', sans-serif);
    font-weight: 600; /* Semi-bold */
    color: #4a3f35; /* Darker text */
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item-name::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: rgba(74, 63, 53, 0.2);
    margin-left: 0.5rem;
}

.menu-item-description {
    font-family: var(--font-body, 'Open Sans', sans-serif);
    color: #777;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Testimonial/Quote Section */
.quote-section {
    background-color: var(--color-primary);
    padding: 4rem 1rem;

}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid var(--color-secondary, #d34e38);
    padding: 1.5rem 2rem;
    text-align: left;
    background-color: rgba(253, 248, 243, 0.7);
    border-radius: 0 16px 16px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.quote-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    color: var(--color-secondary, #d34e38);
    opacity: 0.2;
    font-family: serif;
}

.quote-text {
    font-family: var(--font-body, 'Open Sans', sans-serif);
    font-size: 1.25rem;
    line-height: 1.8;
    color: #5c5046; /* Darker text */
    font-style: italic;
    position: relative;
    z-index: 1;
}

.quote-text::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--color-secondary, #d34e38);
}

/* Footer */
footer {
    background-color: var(--color-secondary, #d34e38);
    color: var(--color-primary, #fdf8f3);
    padding: 4rem 1rem 3rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--color-accent), var(--color-primary), var(--color-accent));
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: start;
}

.footer-column h4 {
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p,
.footer-column ul li {
    font-family: var(--font-body, 'Open Sans', sans-serif);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column a {
    color: var(--color-primary, #fdf8f3);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--color-accent, #ffad36);
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--color-accent, #ffad36);
}

.about-image{
    opacity: 30%;
}

.image-block  {
    background-color: var(--color-secondary);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .menu-content {
        padding: 2rem 1rem;
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column {
        margin-bottom: 1.5rem;
    }
    .quote-content {
        padding-left: 1rem;
        margin-left: 0.5rem;
    }
}


.gallery-section {
    
   /*background: linear-gradient(rgba(255, 255, 255, 0.85), rgb(255, 255, 255, 0.85)), var(--color-accent);*/
   width: 100%;
   margin: 0;
   border-radius: 15px;
}


/* Loader Overlay Styles */
#loader-overlay {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-primary, #fafafa);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}
.loader-spinner {
    border: 6px solid rgba(211, 78, 56, 0.2);
    border-top: 6px solid var(--color-secondary, #d34e38);
    border-right: 6px solid var(--color-accent, #ffad36);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1.2s cubic-bezier(0.5, 0.1, 0.5, 0.9) infinite;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loader-overlay::after {
    content: 'Loading...';
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    color: var(--color-secondary, #d34e38);
    margin-top: 1rem;
    letter-spacing: 2px;
    font-size: 1.2rem;
}
/* Hide Loader Overlay */


#slide1 {  
    background-color: violet;
}

#logo {
    fill: var(--color-secondary);
}