/* Zena Jewelers - Index CSS */
/* Design System: Dark Luxury */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&display=swap');

:root {
    /* Colors - Luxury Gold Palette */
    --color-bg: #fbf8f2;
    --color-surface: #ffffff;
    --color-surface-hover: #f5f5f5;
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #555555;
    --color-gold: #D4AF37;
    --color-gold-light: #E5C349;
    --color-gold-dark: #B8973B;
    --color-accent: #D4AF37;
    --color-accent-light: #E5C349;
    --color-dark: #0a0a0a;
    --color-dark-surface: #111111;
    --color-border: #e0ddd5;

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Cinzel', serif;

    /* Spacing */
    --space-unit: 8px;
    --container-width: 1440px;
    --header-height: 80px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

/* Luxury Pattern - Now for Cards */
.card-pattern-luxury {
    background-color: #0a0a0a;
    color: #ffffff;
    background-image:
        radial-gradient(circle at 100% 100%, rgba(212, 175, 55, 0.08) 10%, transparent 10%),
        radial-gradient(circle at 0% 100%, rgba(212, 175, 55, 0.08) 10%, transparent 10%),
        radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.08) 10%, transparent 10%),
        radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.08) 10%, transparent 10%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.03) 75%, rgba(255, 255, 255, 0.03)),
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.03) 75%, rgba(255, 255, 255, 0.03));
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 20px 20px;
    background-size: 40px 40px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.75rem;
    color: var(--color-text-primary);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.text-gold {
    color: var(--color-accent);
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid var(--color-gold);
    background-color: transparent;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-align: center;
    border-radius: 0;
}

.btn:hover {
    background-color: var(--color-gold);
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: #0a0a0a;
    border-color: var(--color-gold);
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    border-color: var(--color-gold-light);
    color: #0a0a0a;
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    /* Keep Logo Gold */
    letter-spacing: 2px;
}

.nav-links {
    display: none;
    /* Mobile first hidden */
}

@media (min-width: 992px) {
    .nav-links {
        display: flex;
        gap: 30px;
        align-items: center;
    }
}

/* Mobile Menu Toggle - Luxurious Hamburger */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-gold);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Nav Overlay */
@media (max-width: 991px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(13, 13, 13, 0.98);
        /* Deep dark luxury */
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        padding: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-item-white {
        font-size: 1.5rem;
        letter-spacing: 4px;
        font-family: var(--font-heading);
    }
}

.nav-item-white {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Improved legibility over video */
    text-transform: uppercase;
}

.nav-item-white:hover {
    color: var(--color-gold) !important;
}

/* NEW Hero Section - Unified Luxury Design */
/* Hero section styles now handled via Tailwind classes in HTML */

/* Hero Video Styles */
.hero-video {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-video.active {
    opacity: 1;
}

/* Trust Bar - Seamless Luxury Integration */
.trust-bar {
    background: #0a0a0a;
    padding: 0;
    position: relative;
    z-index: 15;
    margin-top: -1px;
}

/* Inner container with subtle top border */
.trust-bar-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }

    .trust-bar-inner {
        padding: 40px 40px;
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
}

@media (min-width: 768px) {
    .trust-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        height: 40px;
        width: 1px;
        background: rgba(212, 175, 55, 0.25);
    }
}

.trust-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
    color: var(--color-gold);
    opacity: 0.9;
}

.trust-title {
    display: block;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.trust-description {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

@media (min-width: 768px) {
    .trust-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 12px;
    }

    .trust-title {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .trust-description {
        font-size: 0.72rem;
    }
}

/* Service Matrix - Award Winning Design */
.services {
    padding: 80px 0;
    background-color: var(--color-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-top: 60px;
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: #0d0d0d;
    padding: 50px 35px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    z-index: 2;
    opacity: 0.6;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0, rgba(212, 175, 55, 0.08), transparent 70%);
    z-index: 0;
    opacity: 0.5;
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-card h3 {
    color: #ffffff !important;
    /* Force white for clarity */
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.service-card p {
    color: #ffffff !important;
    /* Force white, no more grey */
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.9;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--color-gold);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
    /* Gold tinted glow */
}

.service-card:hover h3 {
    color: var(--color-gold) !important;
}

.service-icon {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 30px;
    display: inline-block;
    color: var(--color-gold);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(8deg);
}

.service-learn-more {
    margin-top: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-gold);
    opacity: 0;
    /* Hidden by default */
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 5px;
}

.service-card:hover .service-learn-more {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Grillz Section */
.grillz-section {
    padding: 0;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.grillz-container {
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.grillz-image {
    width: 100%;
    height: 350px;
    order: 1;
}

.grillz-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grillz-content {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 2;
    background: radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.06), transparent 50%);
}

.grillz-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.grillz-features {
    margin-bottom: 28px;
    color: var(--color-text-secondary);
}

.grillz-features li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    padding-left: 20px;
    position: relative;
}

.grillz-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
}

@media (min-width: 992px) {
    .grillz-container {
        flex-direction: row;
    }

    .grillz-image {
        flex: 1;
        height: 550px;
        order: 1;
    }

    .grillz-content {
        flex: 1;
        padding: 60px 50px;
        order: 2;
    }
}

/* Section Typography */
.section-eyebrow {
    display: block;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin: 0;
    letter-spacing: 0.5px;
}

/* Featured Products (Mobile Grid) */
.featured {
    padding: 70px 0;
    background-color: var(--color-bg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on mobile */
    gap: 15px;
    margin-top: 40px;
}

.product-card {
    background-color: #0d0d0d;
    color: #fff;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.12);
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    background-color: #222;
    object-fit: cover;
}

.product-info {
    padding: 15px;
}

.product-card .product-title {
    color: #ffffff;
}

.product-card .product-price {
    color: var(--color-gold);
    font-size: 0.85rem;
}

/* Instagram Section */
.instagram-section {
    padding: 60px 0;
    background-color: var(--color-bg);
    overflow: hidden;
}

.instagram-section .container {
    margin-bottom: 40px;
}

/* Footer */
footer {
    background-color: #0a0a0a;
    color: #fff;
    padding: 60px 0 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

footer .text-gold {
    color: var(--color-gold);
}

footer p,
footer a {
    color: #ccc;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}



/* Deskop Media Queries */
@media (min-width: 1081px) {
    h1 {
        font-size: 4rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }


}