/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f5f0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
.header {
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 60px;
}

.menu-toggle, .search-icon, .cart-icon {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #333;
    padding: 5px;
    z-index: 10;
}

.search-icon {
    margin-left: auto;
    margin-right: 20px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-image {
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 0;
}

.logo-text {
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 1px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.logo-text .gold {
    font-size: 0.9rem;
}

/* Responsive logo styles */
@media (max-width: 768px) {
    .navbar {
        height: 50px;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 1rem;
    }

    .logo-text .gold {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        height: 45px;
    }

    .logo-text {
        display: flex; /* Changed from none to flex to show on mobile */
        font-size: 0.9rem;
    }
    
    .logo-text .gold {
        font-size: 0.7rem;
    }
    
    .logo-image {
        width: 32px;
        height: 32px;
    }
}

.gold {
    color: #d4af37;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #f5f0e8; /* Fallback color */
    background-image: url('images/Products/IMG_20240702_122246.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 0; /* Remove margin to eliminate space */
    padding-top: 60px; /* Add padding to account for the header height */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(3px);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 80px 0 40px 0; /* Add top padding to account for header */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #222;
}

.hero-features {
    margin-bottom: 30px;
}

.hero-features p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.feature-icon {
    color: #333;
    margin-right: 10px;
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-dark {
    background-color: #333;
    color: white;
}

.btn-green {
    background-color: #2e6e4c;
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Custom Fabric Section */
.custom-fabric {
    padding: 80px 0;
    background-color: #faf6f0;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.2;
    color: #333;
}

/* Main Content Layout */
.fabric-services-container {
    width: 100%;
}

/* Main Slider */
.main-swiper {
    width: 100%;
    height: auto;
    padding-bottom: 40px;
}

.slide-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Fabric Image */
.fabric-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.fabric-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.image-label {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 8px;
}

.label-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-align: right;
}

/* Silk Mark Logo Overlay */
.silk-mark-logo {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 80px;
    height: auto;
    z-index: 5;
    opacity: 0.9;
}

/* Service Info */
.service-info {
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-number::before {
    content: '';
    width: 20px;
    height: 2px;
    background-color: #d4af37;
    margin-right: 10px;
    display: inline-block;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #b38c28;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    max-width: 90%;
}

.service-link {
    display: inline-block;
    color: #b38c28;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #8a6a1f;
    text-decoration: underline;
}

.service-features {
    margin-bottom: 20px;
}

.service-feature {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 8px;
}

/* Swiper Pagination Customization */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #b38c28;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .fabric-image {
        height: 350px;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .service-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .section-title {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .fabric-image {
        height: 300px;
    }
    
    .service-title {
        font-size: 1.8rem;
    }
    
    .service-feature {
        font-size: 1rem;
    }
}

/* Section C: Store Information */
.store-info {
    padding: 80px 0;
    background-color: #fff;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 40px;
    color: #333;
}

/* Store Overview */
.store-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
}

.store-details {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: #f9f5f0;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.store-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #b38c28;
    margin-bottom: 20px;
}

.store-rating {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.stars {
    color: #ffc107;
    margin-right: 10px;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
}

.store-address, .store-hours, .store-contact {
    display: flex;
    margin-bottom: 20px;
}

.store-address i, .store-hours i, .contact-item i {
    color: #b38c28;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
}

.hours-details {
    flex: 1;
}

.hours-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.store-contact {
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
}

.store-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.store-map {
    flex: 2;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Customer Reviews */
.customer-reviews {
    margin-bottom: 80px;
}

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    flex: 1;
    min-width: 300px;
    padding: 25px;
    background-color: #f9f5f0;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.review-stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-date {
    font-size: 0.8rem;
    color: #888;
}

.reviews-action {
    text-align: center;
}

/* Store Gallery */
.store-gallery {
    margin-bottom: 80px;
}

/* Google Maps Photos Gallery */
.maps-gallery-container {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.maps-gallery-main {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.maps-photo-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.maps-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.maps-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.maps-photo-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.maps-photo-link:hover .maps-photo {
    transform: scale(1.05);
}

.maps-photo-link:hover .maps-photo-overlay {
    opacity: 1;
}

.maps-photo-caption {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.maps-gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.maps-gallery-row {
    display: flex;
    gap: 20px;
}

.maps-gallery-item {
    flex: 1;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.maps-video-item .maps-photo-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.maps-video-item .maps-photo-overlay i {
    font-size: 3rem;
    color: #ff0000;
}

/* Google Photos Link */
.google-photos-link {
    text-align: center;
    margin-top: 40px;
}

.google-photos-link p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.google-maps-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.google-photos-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.google-photos-link .btn i {
    font-size: 1.2rem;
}

/* Responsive Styles for Gallery */
@media (max-width: 768px) {
    .maps-gallery-row {
        flex-direction: column;
    }
    
    .maps-gallery-item {
        height: 250px;
    }
    
    .google-maps-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Visit CTA */
.visit-cta {
    background-color: #f5f0e8;
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles for Section C */
@media (max-width: 992px) {
    .store-overview {
        flex-direction: column;
    }
    
    .store-map {
        height: 400px;
    }
    
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .visit-cta {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
}

/* Product Showcase Section */
.product-showcase {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.product-showcase .section-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5rem;
    color: #333;
}

.product-showcase .section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.product-swiper {
    margin-bottom: 60px;
    overflow: hidden;
}

.product-slide {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.product-image {
    height: 100%;
    width: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-slide:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: #fff;
    transition: all 0.3s ease;
}

.product-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.product-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.product-benefits {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    margin: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Media Queries for Product Showcase */
@media (max-width: 992px) {
    .product-benefits {
        flex-direction: column;
    }
    
    .benefit-item {
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .product-showcase {
        padding: 60px 0;
    }
    
    .product-showcase .section-title {
        font-size: 2rem;
    }
    
    .product-slide {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .product-slide {
        height: 300px;
    }
    
    .product-overlay h3 {
        font-size: 1.3rem;
    }
}

/* Mobile Footer Menu */
.mobile-footer {
    display: none; /* Hidden by default, shown only on mobile */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(245, 240, 232, 0.95); /* Match header color */
    backdrop-filter: blur(5px); /* Match header blur effect */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05); /* Similar to header but inverted direction */
    z-index: 1000;
    padding: 8px 0 5px;
    justify-content: space-around;
    align-items: center;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 0;
    width: 33.33%;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-item:active {
    transform: scale(0.95);
}

.footer-item i {
    font-size: 1.4rem;
    margin-bottom: 3px;
    color: #333;
    transition: color 0.3s ease;
}

.footer-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.footer-item:nth-child(1) i {
    color: #333; /* Call icon color */
}

.footer-item:nth-child(2) i {
    color: #d4af37; /* Map icon color - gold to match brand */
}

.footer-item:nth-child(3) i {
    color: #25D366; /* WhatsApp green color */
}

.footer-item:hover i, 
.footer-item:hover span {
    color: #d4af37; /* Gold color on hover to match brand */
}

.footer-item:nth-child(3):hover i {
    color: #1ea952; /* Darker WhatsApp green on hover */
}

/* Show mobile footer on smaller screens */
@media (max-width: 768px) {
    .mobile-footer {
        display: flex;
    }
    
    /* Add padding to the bottom of the body to prevent content from being hidden behind the footer */
    body {
        padding-bottom: 60px; /* Reduced from 75px to match smaller footer */
    }
    
    /* Adjust the bottom padding of the last section to prevent overlap with footer */
    .visit-cta {
        margin-bottom: 15px; /* Reduced from 20px */
    }
}

/* Silk Mark Section */
.silk-mark-section {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.silk-mark-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.silk-mark-image {
    flex: 0 0 300px;
    padding: 20px;
}

.silk-mark-logo-large {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.silk-mark-info {
    flex: 1;
}

.silk-mark-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin: 20px 0 30px;
}

.silk-mark-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.silk-mark-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.silk-mark-features i {
    font-size: 1.4rem;
    color: #ae2938;
}

.silk-mark-features span {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

/* Responsive styles for Silk Mark section */
@media (max-width: 992px) {
    .silk-mark-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .silk-mark-image {
        flex: 0 0 200px;
    }

    .silk-mark-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .silk-mark-section {
        padding: 40px 0;
    }

    .silk-mark-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .silk-mark-features .feature {
        justify-content: center;
    }

    .silk-mark-description {
        font-size: 1rem;
        margin: 15px 0 20px;
    }
.silk-mark-logo-small {
    height: 30px;
    width: auto;
}

.silk-mark-nav {
    display: flex;
    align-items: center;
}
/* Hide dropdown by default */
.menu-dropdown {
    display: none;
    position: absolute;
    top: 60px; /* Adjust this value based on your navbar height */
    left: 10px;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    border-radius: 5px;
    z-index: 1000;
    padding: 10px 0;
}

/* Style the dropdown links */
.menu-dropdown a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: black;
    font-size: 16px;
}

/* Hover effect */
.menu-dropdown a:hover {
    background-color: #f1f1f1;
}

/* Show menu when active */
.menu-dropdown.show {
    display: block;
}

} 

/* Ensure Silk Mark logo is properly sized on desktop */
.silk-mark-logo-small {
    max-width: 80px;  /* Keeps size controlled */
    height: auto;
    display: block;
}

/* Adjust for mobile screens */
@media (max-width: 768px) {
    .silk-mark-logo-small {
        max-width: 50px; /* Make it smaller for mobile */
        height: auto;
    }
}

/* Adjust for larger screens */
@media (min-width: 1024px) {
    .silk-mark-logo-small {
        max-width: 60px;  /* Reduce size further if needed */
    }
}
/* Ensure the menu dropdown aligns correctly */
@media (min-width: 768px) {
    .menu-dropdown {
        position: absolute;
        top: 50px; /* Adjust if necessary */
        left: 0;
        background: white;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        min-width: 220px;
        border-radius: 8px;
        padding: 10px 0;
        display: none;
    }

    /* Show dropdown when menu button is clicked */
    .menu-dropdown.show {
        display: block;
    }
}
/* Menu Dropdown - Hidden by default */
.menu-dropdown {
    display: none;
    position: absolute;
    top: 50px; /* Adjust based on header height */
    right: 20px; /* Aligns to the right */
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    min-width: 220px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show dropdown when active */
.menu-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Menu items */
.menu-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-dropdown li {
    border-bottom: 1px solid #f1f1f1;
}

.menu-dropdown li:last-child {
    border-bottom: none;
}

.menu-dropdown a {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.menu-dropdown a:hover {
    background: #f8f8f8;
    color: #ae2938; /* Silk Mark color for better branding */
}

/* Ensure proper positioning on larger screens */
@media (min-width: 768px) {
    .menu-dropdown {
        right: 10px;
        top: 60px;
        min-width: 200px;
    }

}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 0;
    padding-top: 60px;
    transition: background-image 1s ease-in-out;
}

/* Slideshow effect */
@keyframes heroSlideshow {
    0% { background-image: url('images/Products/IMG_20240702_122246.jpg'); }
    33% { background-image: url('images/Products/IMG_20240702_124343.jpg'); }
    66% { background-image: url('images/Products/IMG_20240702_124409.jpg'); }
    100% { background-image: url('images/Products/IMG_20240702_122246.jpg'); }
}

.changing-text {
    display: block;
    font-weight: bold;
    font-size: 3rem;
    color: #b38c28;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    min-height: 30px; /* Prevents jumping when text changes */
}

