/* 
    World Class Design System
    Theme: Luxury Rajasthani Heritage
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --gold: #D4AF37;
    --gold-light: #F1D279;
    --charcoal: #1A1A1A;
    --charcoal-light: #2D2D2D;
    --cream: #FAF9F6;
    --white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--cream);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--charcoal);
}

p {
    font-weight: 300;
    font-size: 1.1rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Premium Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

header.scrolled .nav-links a {
    color: var(--white);
}

.nav-links a:hover {
    color: var(--gold);
}

/* Hero Section - The Wow Factor */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--charcoal);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.1);
    animation: zoomOut 20s infinite alternate;
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.hero-label {
    display: inline-block;
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.8s;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 1.1s;
}

.btn-premium {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--gold);
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    border: 1px solid var(--gold);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 1.4s;
}

.btn-premium:hover {
    background-color: transparent;
    color: var(--gold);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section - Heritage */
.section {
    padding: 150px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: var(--shadow-premium);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    z-index: -1;
    border-radius: 5px;
}

.section-label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* Product Reveal - Grid */
.products {
    background-color: var(--charcoal);
    color: var(--white);
}

.products .section-title {
    color: var(--white);
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    height: 500px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: var(--transition-smooth);
}

.product-card h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 10px;
}

.product-card p {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(212, 175, 55, 0.2) 100%);
}

.product-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

/* Video Gallery */
.video-gallery {
    padding: 8rem 0;
    background-color: var(--charcoal);
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border: 1px solid var(--gold);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.video-card video {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* Contact - Elegant Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-details h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--gold);
    margin-top: 30px;
}

.luxury-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    font-family: inherit;
    font-size: 1.1rem;
    outline: none;
    margin-bottom: 30px;
    transition: var(--transition-smooth);
}

.luxury-input:focus {
    border-bottom-color: var(--gold);
}

/* Footer */
footer {
    padding: 100px 0 50px;
    background-color: var(--charcoal);
    color: var(--white);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 30px;
    display: block;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.socials a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.socials a:hover {
    color: var(--gold);
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--gold);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 968px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--charcoal);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 25px;
        clip-path: circle(0% at 100% 0);
        transition: all 0.5s ease-in-out;
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }

    .nav-links a {
        color: var(--white);
        font-size: 1.2rem;
    }
}

/* Scroll Reveal Utility */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}