/* ========================================
   Pure Red Gold - Luxury CSS Design
   Inspired by Aesop, 10 Corso Como, Charlie's
   ======================================== */

/* Variables */
:root {
    --primary-gold: #B8860B;
    --deep-gold: #996515;
    --light-gold: #D4AF37;
    --saffron-red: #FF4444;
    --cream: #FAF6F0;
    --dark: #1A1A1A;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-light: rgba(0, 0, 0, 0.3);
    
    /* Typography */
    --font-primary: 'Bodoni Moda', serif;
    --font-secondary: 'Spectral', serif;
    --font-accent: 'Playfair Display', serif;
    --font-body: 'Lora', serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--deep-gold);
}

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s, visibility 0.8s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    animation: pulse 1.5s infinite;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    transform: scale(1.4);
}

.loader-progress {
    width: 200px;
    height: 2px;
    background: var(--overlay-light);
    position: relative;
    overflow: hidden;
}

.loader-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gold);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(0.95); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled {
    padding: 15px 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar.visible {
    transform: translateY(0);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.logo-image {
    height: 100%;
    width: 100%;
    transition: var(--transition-smooth);
    background: transparent;
    object-fit: cover;
    transform: scale(1.4);
}

.navbar.scrolled .nav-logo {
    height: 40px;
    width: 40px;
}

.navbar.scrolled .logo-image {
    height: 100%;
    width: 100%;
}


.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-smooth);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.navbar.scrolled .nav-link {
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-smooth);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-smooth);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.navbar.scrolled .nav-toggle span {
    background: var(--white);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section with Video Background */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero-video-container {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.35);
    object-fit: cover;
    z-index: 1;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.2) 60%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 3;
    animation: fadeInUp 1.5s ease-out;
}

/* Mute/Unmute Button */
.mute-toggle {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: rgba(184, 134, 11, 0.9);
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition-smooth);
    z-index: 10;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.mute-toggle:hover {
    background: var(--primary-gold);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.4);
}

.mute-toggle:active {
    transform: scale(0.95);
}

.mute-toggle i {
    pointer-events: none;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-description {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    color: var(--white);
}

.scroll-indicator span {
    display: block;
    font-family: var(--font-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}





/* Sections */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-section .section-title {
    font-weight: 500;
    text-shadow: 3px 3px 6px rgba(255, 255, 255, 0.95),
                 -1px -1px 3px rgba(255, 255, 255, 0.6);
}

.title-underline {
    width: 60px;
    height: 2px;
    background: var(--primary-gold);
    margin: 0 auto 20px;
}

.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

/* About Section */
.about-section {
    position: relative;
    background: transparent;
    overflow: hidden;
}

/* About Background Slider */
.about-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.about-slide.active {
    opacity: 1;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) contrast(1.2) saturate(1.3);
    transform: scale(1.1);
    animation: slowZoomAbout 20s infinite alternate;
}

@keyframes slowZoomAbout {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.2); }
}

.about-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
    display: none;
}

.about-section .container {
    position: relative;
    z-index: 3;
}

.about-section .section-header {
    margin: 0 auto 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.3s forwards;
}

.lead-text {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9),
                 -1px -1px 2px rgba(255, 255, 255, 0.5);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.8),
                 -1px -1px 2px rgba(255, 255, 255, 0.4);
}

.about-features {
    display: grid;
    gap: 30px;
    opacity: 0;
    animation: slideInRight 1s ease-out 0.3s forwards;
}

.feature-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(184, 134, 11, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Products Section */
.products-section {
    background: var(--cream);
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-smooth);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

/* Position adjustment for dried fruits image */
.product-card[data-product="dried-fruits"] .product-image img {
    object-position: center 30%;
}

.product-card[data-product="dried-fruits"]:hover .product-image img {
    transform: scale(1.1);
    object-position: center 30%;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
    opacity: 1;
    visibility: visible;
}

.product-link {
    padding: 12px 30px;
    background: var(--primary-gold);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-gold);
    transition: var(--transition-smooth);
}

.product-link:hover {
    background: transparent;
    color: var(--primary-gold);
    border-color: var(--white);
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-origin {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--primary-gold);
    font-style: italic;
}

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

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-gold);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--primary-gold);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-gold);
}

/* Gallery/Experience Section */
.gallery-section {
    background: var(--white);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    margin-bottom: 60px;
}

.experience-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.experience-item:nth-child(1) { animation-delay: 0.1s; }
.experience-item:nth-child(2) { animation-delay: 0.2s; }
.experience-item:nth-child(3) { animation-delay: 0.3s; }
.experience-item:nth-child(4) { animation-delay: 0.4s; }
.experience-item:nth-child(5) { animation-delay: 0.5s; }

.experience-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

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

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

.experience-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

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

.experience-overlay h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.experience-overlay p {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Locations Section */
.locations-section {
    background: var(--cream);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.location-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    opacity: 0;
    animation: slideInUp 1s ease-out forwards;
}

.location-card:nth-child(2) {
    animation-delay: 0.2s;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.location-image {
    height: 100%;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.location-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.location-type {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--primary-gold);
    font-style: italic;
    margin-bottom: 25px;
}

.location-details {
    margin-bottom: 30px;
}

.location-details p {
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-details i {
    color: var(--primary-gold);
    width: 20px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary-gold);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-gold);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--white);
}

.contact-info {
    text-align: center;
    padding: 60px;
    background: var(--white);
    border-radius: 10px;
}

.contact-info h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--cream);
    border-radius: 30px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.contact-method:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-method i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand {
    position: relative;
}

.footer-logo {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    transform: scale(1.4);
}

.footer-brand p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 5px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--deep-gold);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 992px) {
    .nav-container {
        justify-content: space-between;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition-smooth);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .nav-link {
        color: var(--white);
        text-shadow: none;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-section .section-header {
        padding: 15px 30px;
    }
    
    .products-showcase {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }
    
    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .mute-toggle {
        bottom: 30px;
        left: 30px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(auto, 250px);
    }
    
    .experience-item.large {
        grid-column: span 1;
    }
    
    .location-card {
        grid-template-columns: 1fr;
    }
    
    .location-image {
        height: 250px;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .about-bg-overlay {
        background: linear-gradient(
            135deg,
            rgba(250, 246, 240, 0.75) 0%,
            rgba(250, 246, 240, 0.7) 50%,
            rgba(255, 255, 255, 0.75) 100%
        );
    }
    
    .about-slide img {
        filter: brightness(0.65) contrast(1.15) saturate(1.2);
    }
}

@media (max-width: 576px) {
    .container,
    .nav-container {
        padding: 0 20px;
    }
    
    .hero-section {
        height: 100vh;
    }
    
    /* Mobile video optimization */
    .hero-video {
        transform: translate(-50%, -50%) scale(1.2);
    }
    
    .hero-video-container {
        top: 0;
        height: 100%;
    }
    
    .mute-toggle {
        bottom: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .products-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}