/* ==========================================================================
   Jayla Taylor - Main Stylesheet
   Brand Colors & Typography
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Lato:wght@300;400;700&display=swap');

/* ==========================================================================
   CSS Variables - Brand Colors
   ========================================================================== */
:root {
    /* Primary Colors */
    --primary-dark: #000000;
    /* Deep Charcoal Black */
    --accent-gold-1: #c79517;
    /* Dark Goldenrod */
    --accent-gold-2: #cf9f00;
    /* Metallic Gold */
    --secondary-dark: #000000;
    /* Soft Black */
    --neutral-light: #F5F5F5;
    /* Off-White/Light Gray */

    /* Additional Colors */
    --white: #FFFFFF;
    --black: #000000;
    --error: #DC3545;
    --success: #28A745;

    /* Missing Colors for About Page */
    --bg-light: #F5F5F5;
    /* Light background */
    --text-secondary: #666666;
    /* Secondary text color */
    --gold-primary: #D4AF37;
    /* Primary gold (same as accent-gold-2) */
    --gold-secondary: #B8860B;
    /* Secondary gold (same as accent-gold-1) */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

/* ==========================================================================
   Global Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--neutral-light);
    background-color: var(--primary-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--neutral-light);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--neutral-light);
}

a {
    color: var(--accent-gold-2);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-gold-1);
}

/* ==========================================================================
   Layout Components
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-gold-1);
    color: var(--primary-dark);
    border-color: var(--accent-gold-1);
}

.btn-primary:hover {
    background-color: var(--accent-gold-2);
    border-color: var(--accent-gold-2);
    color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-gold-2);
    border-color: var(--accent-gold-2);
}

.btn-outline:hover {
    background-color: var(--accent-gold-2);
    color: var(--primary-dark);
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-dark);
    border-bottom: 1px solid var(--secondary-dark);
    z-index: 1000;
    transition: all var(--transition-fast);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-gold-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--accent-gold-2);
}

.nav-icons {
    display: flex;
    gap: 25px;
    align-items: center;
    height: 24px;
    /* Ensure consistent height */
}

.nav-icon {
    color: var(--neutral-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-width: 24px;
    min-height: 24px;
    line-height: 1;
}

.nav-icon:hover {
    color: var(--accent-gold-2);
}

.cart-count {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-badge {
    position: absolute !important;
    top: -8px;
    right: -8px;
    background-color: var(--accent-gold-1);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.cart-badge.updated {
    animation: cartBounce 0.6s ease;
}

@keyframes cartBounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        transform: scale(1);
    }

    40%,
    43% {
        transform: scale(1.3);
    }

    70% {
        transform: scale(1.1);
    }

    90% {
        transform: scale(1.05);
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    border: none;
    background: none;
    outline: none;
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--accent-gold-2);
    outline-offset: 2px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--neutral-light);
    margin: 3px 0;
    transition: all var(--transition-fast);
    display: block;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
    margin-left: calc(-50vw + 50%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-color: var(--primary-dark);
    overflow: hidden;
}

/* Video Background Styles */
.hero-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
    min-width: 100%;
    min-height: 100%;
}

/* Fallback image for browsers without video support */
.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Video overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(26, 26, 26, 0.4) 50%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--neutral-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--accent-gold-2);
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Product Grid
   ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.product-card {
    background-color: var(--secondary-dark);
    border-radius: 4px;
    overflow: hidden;
    transition: transform var(--transition-fast);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--neutral-light);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold-2);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--black);
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--accent-gold-2);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--neutral-light);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold-2);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-dark);
    border-radius: 50%;
    color: var(--neutral-light);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--accent-gold-2);
    color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--secondary-dark);
}

.footer-bottom p {
    color: var(--neutral-light);
    font-size: 0.875rem;
}

/* ==========================================================================
   Video Toggle Button
   ========================================================================== */
.video-toggle {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.8;
}

.video-toggle:hover {
    background: rgba(212, 175, 55, 0.9);
    border-color: rgba(212, 175, 55, 1);
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.video-toggle:active {
    transform: scale(0.95);
}

.video-toggle i {
    color: var(--accent-gold-2);
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.video-toggle:hover i {
    color: var(--primary-dark);
}

/* Mobile video toggle adjustments */
@media (max-width: 768px) {
    .video-toggle {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .video-toggle i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .video-toggle {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .video-toggle i {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--primary-dark);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid var(--secondary-dark);
        z-index: 999;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid var(--secondary-dark);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        font-size: 1.125rem;
        padding: 15px 0;
        display: block;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Luxury Animations & Transitions
   ========================================================================== */

/* Smooth Transitions for All Elements */
* {
    transition: all var(--transition-fast) ease;
}

/* Page Transition Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Scroll Reveal Animation - DISABLED TO FIX LOADING ISSUES */
.reveal {
    /* opacity: 0;
    transform: translateY(50px); */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    /* opacity: 0;
    transform: translateX(-50px); */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    /* opacity: 0;
    transform: translateX(50px); */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Luxury Hover Effects */
.luxury-hover {
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.luxury-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(212, 175, 55, 0.3),
            transparent);
    transition: left 0.6s;
    z-index: 1;
}

.luxury-hover:hover::before {
    left: 100%;
}

.luxury-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Premium Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            var(--accent-gold-1),
            var(--accent-gold-2));
    transition: left 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    color: var(--primary-dark);
}

.btn:active {
    transform: translateY(0);
    transition: transform 0.1s;
}

/* Product Card Enhancements */
.product-card {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.product-card .product-image {
    position: relative;
    overflow: hidden;
}

.product-card .product-image img {
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    background: linear-gradient(45deg,
            rgba(0, 0, 0, 0.7),
            rgba(26, 26, 26, 0.8));
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .product-overlay {
    background: linear-gradient(45deg,
            rgba(212, 175, 55, 0.9),
            rgba(184, 134, 11, 0.9));
}

/* Navigation Enhancements */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--accent-gold-1), var(--accent-gold-2));
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-gold-2);
    transform: translateY(-2px);
}

/* Hero Video Enhancement */
.hero-video {
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero:hover .hero-video {
    transform: scale(1.05);
}

/* Magazine Logo Hover Effects */
.magazine-logo img {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    filter: grayscale(100%) brightness(0.7);
}

.magazine-logo:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1) rotate(2deg);
}

/* Fashion Week Card Animations */
.fashion-week-card {
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.fashion-week-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.1),
            rgba(184, 134, 11, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 4px;
}

.fashion-week-card:hover::before {
    opacity: 1;
}

.fashion-week-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.fashion-week-card img {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.fashion-week-card:hover img {
    transform: scale(1.05);
}

/* Gallery Item Animations */
.gallery-item {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Video Toggle Button Animation */
.video-toggle {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-toggle:hover {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.5);
}

/* Loading Animation */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            transparent,
            rgba(212, 175, 55, 0.3),
            transparent);
    animation: shimmer 2s infinite;
}

/* ==========================================================================
   Interactive Effects & Ripples
   ========================================================================== */

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6), transparent 60%);
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Custom Cursor Styles */
.custom-cursor {
    will-change: transform;
}

/* Page Transition Enhancement */
.page-loaded {
    animation: fadeInUp 0.8s ease-out;
}

/* Enhanced Mobile Menu Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-menu.active {
    animation: slideInLeft 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Section Dividers with Animation */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold-2), transparent);
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.8s ease;
}

.section.reveal.active::before {
    transform: translateX(-50%) scaleX(1);
}

/* Enhanced Gallery Lightbox */
.lightbox {
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.lightbox-content {
    animation: lightboxZoom 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes lightboxZoom {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Newsletter Form Enhancement */
.newsletter-form {
    position: relative;
    overflow: hidden;
}

.newsletter-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s;
}

.newsletter-form:focus-within::before {
    left: 100%;
}

/* Social Links Animation */
.social-links a {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--accent-gold-2), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: -1;
}

.social-links a:hover::before {
    width: 40px;
    height: 40px;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.2);
    color: var(--primary-dark);
}

/* Search Icon Enhancement */
.search-icon {
    transition: all 0.3s ease;
    position: relative;
}

.search-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--accent-gold-2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: -1;
}

.search-icon:hover::after {
    width: 35px;
    height: 35px;
}

.search-icon:hover {
    color: var(--primary-dark);
}

/* Loading States */
.loading-skeleton {
    background: linear-gradient(90deg,
            var(--secondary-dark) 25%,
            var(--primary-dark) 50%,
            var(--secondary-dark) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Focus Enhancements for Accessibility */
*:focus {
    outline: 2px solid var(--accent-gold-2);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Enhanced Form Fields */
input,
textarea,
select {
    transition: all 0.3s ease;
    position: relative;
}

input:focus,
textarea:focus,
select:focus {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold-1), var(--accent-gold-2));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Preloader Animation */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.preloader-logo {
    font-size: 2rem;
    color: var(--accent-gold-2);
    animation: preloaderPulse 2s infinite;
}

@keyframes preloaderPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .luxury-hover:hover {
        transform: none;
    }

    .custom-cursor {
        display: none;
    }

    .ripple {
        transform: scale(2);
    }
}