/* Luxury Theme Homepage Styles */
/* Typography adjustments */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
}

/* Luxury Hero Section */
.luxury-hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-image: url('/images/Background1.png'); /* Fallback */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 0 5%;
}

.luxury-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(40,4,4,0.6) 0%, rgba(90,10,10,0.2) 100%);
    z-index: 1;
}

.luxury-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #F7F3EF;
    animation: fadeIn 1.5s ease-out;
}

.luxury-hero-label {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.luxury-hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.luxury-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-luxury {
    display: inline-block;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-luxury:hover {
    background: var(--accent);
    color: var(--bg-secondary);
}

/* Category Circular Layout */
.category-strip {
    padding: 2rem 0; /* Thinner vertically */
    background: var(--bg-main);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.category-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.category-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.category-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-circle img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.4s ease;
}

.category-circle-item:hover .category-circle {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(90,10,10,0.15);
}

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

.category-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.category-circle-item:hover .category-label {
    color: var(--accent);
}

/* Brand Story Section */
.brand-story {
    background-color: var(--bg-secondary);
    background-image: url('/images/fabric.png');
    background-size: cover;
    background-position: center;
    color: #F7F3EF;
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media(min-width: 992px) {
    .brand-story {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        gap: 4rem;
    }
    .story-content {
        flex: 1;
        max-width: 500px;
    }
    .story-features {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        border-left: 1px solid rgba(212,175,55,0.2);
        padding-left: 4rem;
    }
}

.story-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 1rem;
}

.story-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.story-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(247, 243, 239, 0.8);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon {
    color: var(--accent);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.feature-desc {
    font-size: 0.9rem;
    color: rgba(247, 243, 239, 0.7);
    line-height: 1.5;
}

/* Best Sellers Grid */
.best-sellers {
    padding: 6rem 5%;
    background-color: var(--bg-main);
}

.section-header-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--bg-secondary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
}

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media(min-width: 768px) {
    .luxury-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1200px) {
    .luxury-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.luxury-product-card {
    text-decoration: none;
    display: block;
}

.product-image-container {
    position: relative;
    background-color: var(--bg-light);
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.luxury-product-card:hover .product-image-container img {
    transform: scale(1.08);
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--bg-secondary);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 2px;
}

.product-details {
    text-align: center;
}

.product-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bg-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-price {
    font-family: var(--font-body);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Promotional Banner */
.promo-banner {
    position: relative;
    width: 100%;
    padding: 6rem 5%;
    background-color: var(--bg-secondary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}

.promo-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('/images/BG2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.promo-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.promo-title {
    font-size: 3.5rem;
    color: #F7F3EF;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Arch Shape Display Section */
.arch-display-section {
    background-color: var(--bg-main); /* Light background */
    padding: 6rem 5%;
    text-align: center;
}

.arch-display-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.arch-card {
    width: 250px;
    height: 350px;
    border-radius: 125px 125px 0 0; /* Arch shape */
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.4s ease;
    text-decoration: none;
    overflow: hidden;
}

.arch-card:hover {
    transform: translateY(-10px);
}

.arch-card img {
    width: 80%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.4s ease;
}

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

.arch-card-title {
    margin-top: 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Image Hotspots */
.img-hotspot {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%; /* or arbitrary */
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.img-hotspot:hover {
    background: rgba(212, 175, 55, 0.15); /* light gold hover */
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    border-radius: 20px;
}

.hotspot-indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(212, 175, 55, 0.4);
    animation: pulse-hotspot 2s infinite;
}

@keyframes pulse-hotspot {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* ==========================================================================
   MOBILE RESPONSIVENESS
   ========================================================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-main);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-overlay.active {
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    width: 80%;
}

.mobile-menu-content a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.mobile-menu-content a:hover {
    color: var(--accent);
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 4rem;
    color: var(--text-primary);
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 992px) {
    /* Header & Nav */
    .nav-links, .desktop-action {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-inner {
        padding: 0 5%;
        justify-content: space-between;
    }
    
    .main-logo {
        max-height: 35px;
    }

    /* Hero Section */
    .luxury-hero {
        padding: 4rem 5% 2rem;
        min-height: 30vh;
    }
    .luxury-hero-title {
        font-size: 2.5rem;
    }
    .luxury-hero-subtitle {
        font-size: 0.9rem;
    }

    /* Categories */
    .category-container {
        gap: 1rem;
    }
    .category-circle {
        width: 70px;
        height: 70px;
    }

    /* Discover Elegance */
    .arch-display-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        gap: 1.5rem !important;
        overflow-x: auto !important;
        padding-bottom: 1.5rem !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .arch-display-grid::-webkit-scrollbar {
        display: none;
    }
    .arch-card {
        flex: 0 0 65% !important;
        max-width: 65% !important;
        height: 350px !important;
        padding: 2rem !important;
        border-radius: 500px 500px 0 0 !important;
        scroll-snap-align: center;
    }
    .arch-card-title {
        font-size: 1rem !important;
        margin-top: 1rem !important;
    }

    /* Brand Story */
    .brand-story {
        flex-direction: column;
        padding: 2rem 5%;
        gap: 2rem;
    }
    .story-title {
        font-size: 2rem;
    }
    .story-features {
        padding: 0;
        gap: 1.5rem;
    }

    /* Why Trust Us */
    .trust-section {
        padding: 3rem 0 !important;
    }
    .trust-section .section-header-flex {
        padding: 0 5%;
    }
    .trust-section > div:last-child {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        gap: 1rem !important;
        overflow-x: auto !important;
        padding: 1.5rem 5% !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .trust-section > div:last-child::-webkit-scrollbar {
        display: none;
    }
    .trust-section > div:last-child > div {
        flex: 0 0 70% !important;
        max-width: 70% !important;
        padding: 2rem 1.5rem !important;
        background-color: var(--bg-main) !important;
        border-radius: 15px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
        scroll-snap-align: center;
    }
    .trust-section svg {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 1rem !important;
    }
    .trust-section h4 {
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem !important;
    }
    .trust-section p.feature-desc {
        display: block !important;
        font-size: 0.75rem !important;
    }
    
    /* Instagram Banner */
    .instagram-section {
        padding: 2rem 5% !important;
    }
    .instagram-section > div {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1rem !important;
    }
    .instagram-section .section-title {
        text-align: left !important;
        font-size: 1.2rem !important;
        margin-bottom: 0 !important;
    }
    .instagram-section a[style*="font-size: 2.5rem"] {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }
    .instagram-section span {
        font-size: 0.8rem !important;
    }
    .instagram-section svg {
        width: 50px !important;
        height: 50px !important;
    }
    .instagram-section .btn-luxury {
        padding: 0.4rem 1rem !important;
    }
    
    /* Promo Banner */
    .promo-banner {
        min-height: 200px;
        padding: 2rem 5%;
    }
    .promo-title {
        font-size: 1.8rem;
    }

    /* Footer */
    .footer-content {
        gap: 1.5rem;
    }
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .luxury-hero-title {
        font-size: 2rem;
    }
    .story-title {
        font-size: 1.8rem;
    }

    .instagram-section a[style*="font-size: 2.5rem"] {
        font-size: 0.9rem !important;
    }
}
