@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Montserrat:wght@100..900&display=swap');

:root {
    --gold: #D4AF37;
    --gold-light: #F4E4BC;
    --maroon: #4A0404;
    --off-white: #FDFCF8;
    --charcoal: #333333;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--off-white);
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.8;
    overflow-x: hidden;
}

p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

h1,
h2,
h3,
h4,
.luxury-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 5%;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(10px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 900;
}

.nav-logo img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: #fff;
    padding: 2px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    /* White by default for contrast over Hero */
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    height: 100vh;
}

.page-header {
    height: 40vh;
    min-height: 300px;
    padding-top: 0 !important;
}

.hero,
.page-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    position: relative;
    background: #000;
}

/* Cinematic CSS Background System */
.cinematic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    animation: kenBurnsZoom 20s infinite alternate ease-in-out;
    opacity: 0.6;
}

@keyframes kenBurnsZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15) rotate(0.01deg);
    }
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0;
    animation: floatParticle 8s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.8));
    z-index: 3;
}

.video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.hero-video-iframe {
    width: 100vw;
    height: 56.25vw;
    /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 Aspect Ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.9);
}

@keyframes cinematicZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 5px;
    animation: fadeUp 1.5s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-content p {
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(212, 175, 55, 0) 0%,
            rgba(212, 175, 55, 0.1) 50%,
            rgba(212, 175, 55, 0) 100%);
    background-size: 200% 200%;
    animation: shimmer 6s infinite linear;
    pointer-events: none;
}

/* Floating Social Sidebar */
.floating-social {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1500;
}

.social-float-item {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-float-item:hover {
    background: var(--gold);
    color: #fff;
    transform: translateX(5px) scale(1.1);
}

/* Product Marquee */
.marquee-container {
    overflow: hidden;
    padding: 60px 0;
    background: #fff;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    animation: marqueeMove 40s linear infinite;
    gap: 30px;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    width: 300px;
    flex-shrink: 0;
    transition: var(--transition);
}

.marquee-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-premium);
}

@keyframes marqueeMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Responsiveness Overhaul */
@media (max-width: 992px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 5%;
        flex-direction: column;
        gap: 8px;
        background: rgba(10, 10, 10, 0.95) !important;
        backdrop-filter: blur(15px);
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .nav-links a {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    /* Pushes content down to clear fixed navbar */
    .hero,
    .page-header {
        padding-top: 120px !important;
        height: auto !important;
        min-height: 50vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }

    .hero-content p {
        font-size: 0.85rem;
        letter-spacing: 1px !important;
    }

    /* Move social bar to bottom center on mobile to avoid overlap */
    .floating-social {
        left: 50% !important;
        top: auto !important;
        bottom: 20px !important;
        transform: translateX(-50%) !important;
        flex-direction: row !important;
        background: rgba(0, 0, 0, 0.6);
        padding: 8px 20px;
        border-radius: 40px;
        width: auto !important;
        border: 1px solid var(--gold);
    }

    .social-float-item {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    /* Gallery Tabs wrapping */
    .gallery-tabs {
        flex-wrap: wrap;
        gap: 10px;
        padding: 0 15px;
    }

    .tab-btn {
        padding: 8px 12px;
        font-size: 0.7rem;
        flex: 1 1 calc(50% - 10px);
        min-width: 100px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .marquee-item {
        width: 240px;
    }

    .marquee-item img {
        height: 300px;
    }

    /* Splash Screen Mobile */
    #splash-screen h1 {
        font-size: 1.5rem;
        letter-spacing: 5px;
    }

    .splash-logo {
        width: 90px;
        height: 90px;
    }

    .welcome-text {
        font-size: 1.4rem;
    }

    .welcome-subtext {
        font-size: 0.8rem !important;
        letter-spacing: 2px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
        z-index: 2000;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

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

    .product-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .purity-select {
        flex-direction: column;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% -200%;
    }

    100% {
        background-position: 200% 200%;
    }
}

/* Product & Gallery Grid */
.product-section {
    padding: 100px 5%;
    background: var(--off-white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--maroon);
    margin-bottom: 15px;
}

.section-title .divider {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    position: relative;
}

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

.product-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

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

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

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

.product-info h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.product-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Splash Screen */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
    text-align: center;
    color: white;
}

#splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    animation: splashFadeIn 1s ease forwards;
    width: 90%;
    max-width: 600px;
}

.splash-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    padding: 10px;
    background: #fff;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    animation: logoPulse 3s infinite ease-in-out;
}

#splash-screen h1 {
    font-size: 2.5rem;
    letter-spacing: 10px;
    color: var(--gold);
    margin-bottom: 10px;
}

.splash-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto;
}

.splash-subtitle {
    letter-spacing: 5px;
    font-size: 1rem;
    color: #888;
    margin-bottom: 40px;
}

.splash-welcome-box {
    margin-top: 30px;
    padding: 30px 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    animation: splashBoxIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.welcome-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 12px !important;
    animation: textFadeIn 1.5s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.welcome-subtext {
    font-size: 1rem !important;
    color: var(--gold) !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: textFadeIn 1.5s ease-out forwards;
    animation-delay: 1.1s;
    opacity: 0;
}

@keyframes splashFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes splashBoxIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
    }
}

@keyframes scalePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Modals / Lightbox */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    background: #fff;
    position: relative;
    padding: 40px;
    border-radius: 10px;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--charcoal);
}

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 25px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gold) !important;
    color: #fff !important;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: var(--charcoal);
    color: #fff;
    padding: 80px 5% 40px;
    text-align: center;
}

footer p {
    color: #fff;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 30px;
    display: block;
    text-decoration: none;
}

.social-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--gold);
    transform: translateY(-5px);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    list-style: none;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    font-size: 0.95rem;
    color: #888;
    border-top: 1px solid #444;
    padding-top: 40px;
}

/* Trust Popup Content */
.trust-popup-card {
    text-align: center;
    max-width: 600px;
}

.trust-popup-card h2 {
    color: var(--maroon);
    margin-bottom: 20px;
}

.purity-select {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.purity-option {
    flex: 1;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.purity-option:hover {
    border-color: var(--gold);
    background: var(--off-white);
}

.purity-option h4 {
    color: var(--gold);
    margin-bottom: 10px;
}