/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #ffffff;
}
a{
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}
/* Extra css */
.d-block{
    display: block !important;
}
.d-none{
    display: none !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-video.loaded {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(212, 175, 55, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Luxury Design Elements */
.luxury-accent {
    position: relative;
}

.luxury-accent::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--golden-color), transparent);
}

.luxury-accent::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--golden-color), transparent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-video {
        /* Ensure video covers the full area on mobile */
        width: 200vw;
        height: 112.5vw; /* 16:9 aspect ratio */
        min-height: 200vh;
        min-width: 355.54vh; /* 16:9 aspect ratio */
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 50vh;
    }
    
    .hero-video {
        /* Better coverage for smaller screens */
        width: 250vw;
        height: 140.625vw; /* 16:9 aspect ratio */
        min-height: 250vh;
        min-width: 444.425vh; /* 16:9 aspect ratio */
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
    background-color: var(--golden-color);
    color: #ffffff;
}

::-moz-selection {
    background-color: var(--golden-color);
    color: #ffffff;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--golden-color);
    outline-offset: 2px;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}



/* HEADER ######################################################################################## */
.luxury-header {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 0;
    transition: all 0.3s ease;
}

.luxury-header:hover {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.luxury-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 30px;
}


.logo-icon i {
    font-size: 32px;
    color: var(--golden-color);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.luxury-header:hover .brand-name,
.luxury-header.scrolled .brand-name {
    color: var(--text-primary);
    text-shadow: none;
}

.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0 0 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.luxury-header:hover .brand-tagline,
.luxury-header.scrolled .brand-tagline {
    color: #8a8a8a;
}

/* Navigation Menu */
.main-navigation {
    width: 100%;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
}

.luxury-header:hover .nav-link,
.luxury-header.scrolled .nav-link {
    color: #2c2c2c;
}

.nav-link:hover {
    color: var(--golden-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background: linear-gradient(90deg, transparent, var(--golden-color), transparent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Search Icon Styling */
.search-item .nav-link {
    font-size: 16px;
    padding: 10px;
}

.search-item .nav-link i {
    transition: transform 0.3s ease;
}

.search-item .nav-link:hover i {
    transform: scale(1.1);
}

/* Mega Menu */
.mega-menu {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    padding: 60px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
}

.menu-column {
    flex: 1;
}

.menu-column.links-column {
    flex: 0 0 250px;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    padding-right: 50px;
}

.menu-column.gallery-column {
    flex: 2;
    overflow: hidden;
}

.menu-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.menu-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--golden-color);
}

.menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-links li {
    margin-bottom: 15px;
}

.menu-links a {
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

.menu-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--golden-color);
    border-radius: 50%;
    margin-right: 12px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.menu-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.menu-links a:hover {
    color: var(--golden-color);
    padding-left: 10px;
}

.collection-gallery {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 15px;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.collection-gallery::-webkit-scrollbar {
    display: none; /* WebKit */
}

.collection-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    flex: 0 0 220px;
    min-width: 220px;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInFromRight 0.6s ease-out forwards;
}

.collection-item:nth-child(1) { animation-delay: 0.1s; }
.collection-item:nth-child(2) { animation-delay: 0.2s; }
.collection-item:nth-child(3) { animation-delay: 0.3s; }
.collection-item:nth-child(4) { animation-delay: 0.4s; }
.collection-item:nth-child(5) { animation-delay: 0.5s; }
.collection-item:nth-child(6) { animation-delay: 0.6s; }
.collection-item:nth-child(7) { animation-delay: 0.7s; }

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.collection-item:hover {
    border: 1px solid var(--golden-color);
}

.collection-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.collection-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}



.collection-caption {
    padding: 15px;
    text-align: center;
}

.collection-title {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
}

.search-input {
    width: 100%;
    padding: 20px 60px 20px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    border: 2px solid var(--golden-color);
    border-radius: 50px;
    outline: none;
    background-color: #ffffff;
    color: var(--text-primary);
}

.search-input::placeholder {
    color: #8a8a8a;
}

.search-close {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    color: #8a8a8a;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-close:hover {
    color: var(--golden-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }
    
    .brand-name {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .mega-menu {
        padding: 40px 0;
    }
    
    .mega-menu-content {
        padding: 0 20px;
        flex-direction: column;
        gap: 25px;
        max-width: none;
    }
    
    .menu-column.links-column {
        flex: none;
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        padding-right: 0;
        padding-bottom: 20px;
    }
    
    .collection-gallery {
        gap: 15px;
    }
    
    .collection-item {
        flex: 0 0 180px;
        min-width: 180px;
    }
    
    .collection-image {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .luxury-header {
        padding: 20px 0;
    }
    
    .logo-section {
        margin-bottom: 20px;
    }
    
    .brand-name {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .mega-menu {
        padding: 30px 0;
    }
    
    .mega-menu-content {
        padding: 0 15px;
    }
    
    .collection-item {
        flex: 0 0 150px;
        min-width: 150px;
    }
    
    .collection-image {
        height: 80px;
    }
}

/* Mobile Header Styles */
.mobile-header {
    display: none;
    /* background: var(--primary-gradient); */
    /* position: fixed; */
    /* top: 0; */
    /* left: 0; */
    /* right: 0; */
    /* z-index: 1001; */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    height: 100px;
}

/* Left: Hamburger Menu */
.mobile-menu-toggle {
    flex: 0 0 auto;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle i {
    font-size: 24px;
    color: var(--golden-color);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

/* Center: Logo */
.mobile-logo {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mobile-logo-icon {
    margin-bottom: 4px;
}

.mobile-logo-icon i {
    font-size: 30px;
    color: var(--golden-color);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.mobile-brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--golden-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

/* Right: Shopping Cart */
.mobile-cart {
    flex: 0 0 auto;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.mobile-cart:hover {
    transform: scale(1.1);
}

.mobile-cart-icon {
    position: relative;
    display: inline-block;
}

.mobile-cart-icon i {
    font-size: 24px;
    color: var(--golden-color);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--golden-gradient);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary-color);
}

/* Mobile Header Media Queries */
@media (max-width: 768px) {
    .luxury-header {
        display: none;
    }
    
    .mobile-header {
        display: block;
    }
}



/* FOOTER ######################################################################################## */
.luxury-footer {
    background-color: #f8f8f8;
    border-top: 1px solid #e8e8e8;
    padding: 60px 0 30px;
}

.footer-container {
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 40% 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--golden-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links.contact-info{
    color: #666;
    font-size: 15px;;
}
.footer-links.contact-info i{
    color: var(--golden-color);
}

.footer-links li {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    color: #666;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--golden-color);
    color: #ffffff;
    border-color: var(--golden-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #e8e8e8;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #8a8a8a;
    margin: 0;
    letter-spacing: 1px;
}

.newsletter-signup {
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    max-width: 300px;
    margin: 15px 0 0 0;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e8e8e8;
    border-radius: 25px 0 0 25px;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.newsletter-button {
    padding: 12px 20px;
    background-color: var(--golden-color);
    color: #ffffff;
    border: none;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background-color: var(--golden-dark);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .luxury-footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 100%;
        margin: 15px auto 0;
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-input {
        border-radius: 25px;
    }
    
    .newsletter-button {
        border-radius: 25px;
    }
    
    .social-links {
        justify-content: center;
    }
}



/* MY STYLES */
a:focus, button:focus, input:focus{
    outline: 0 !important;
}

/* Mobile Sidebar Styles */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 350px;
    height: 100%;
    background-color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-sidebar-overlay.active .mobile-sidebar {
    left: 0;
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background-color: var(--primary-color);
    color: white;
}

.mobile-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-sidebar-brand {
    font-weight: 600;
    font-size: 16px;
}

.mobile-sidebar-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.mobile-sidebar-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-sidebar-content {
    padding: 0;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #eee;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    background-color: #f8f9fa;
    color: var(--golden-color);
}

.mobile-nav-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.mobile-nav-arrow {
    margin-left: auto;
    margin-right: 0 !important;
    transition: transform 0.2s ease;
}

.mobile-dropdown.active .mobile-nav-arrow {
    transform: rotate(90deg);
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu-item {
    border-bottom: 1px solid #e9ecef;
}

.mobile-submenu-item:last-child {
    border-bottom: none;
}

.mobile-submenu-link {
    display: block;
    padding: 12px 20px 12px 40px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.mobile-submenu-link:hover {
    background-color: #e9ecef;
    color: var(--golden-color);
    padding-left: 45px;
}
/* 
@media (min-width: 992px) {
    .mobile-sidebar-overlay {
        display: none;
    }
} */