:root {
    --primary-color: #1a1a1a;
    --accent-color: #d4af37;
    --text-color: #ffffff;
    --secondary-color: #8b7355;
    --gold-light: #f4e4bc;
    --gradient-1: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --gradient-2: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    --gradient-accent: linear-gradient(135deg, #d4af37 0%, #c5a028 100%);
    --gradient-gold: linear-gradient(to right, #d4af37 0%, #f4e4bc 50%, #d4af37 100%);
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Georgia', serif;
    --transition-timing: all 0.3s ease-in-out;
}

/* Brand Colors - Gold and Earthy tones for luxury Indian fashion */
.hero h1 {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s infinite linear;
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.section-title, h2 {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.section-title::after, h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-accent);
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-gold);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: var(--transition-timing);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    background: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Performance Optimizations */
.hero,
.about,
.gallery,
.testimonials,
.contact {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Loading Optimizations */
img {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

img.loaded {
    opacity: 1;
}

header {
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(45, 45, 45, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition-timing);
    display: block;
}

.nav-links a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

main {
    margin-top: 60px;
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 4rem;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent-color) 0%, transparent 70%);
    opacity: 0.05;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0.95) 70%);
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    padding: 3rem;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-primary);
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--accent-color);
}

.hero-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Section */
.gallery {
    padding: 4rem 2rem;
    background: var(--gradient-2);
}

.gallery h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-color);
}

/* Gallery Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    grid-auto-rows: 1fr;
}

.gallery-container {
    position: relative;
    padding-bottom: 6rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    aspect-ratio: 3/4;
    border: 1px solid rgba(212, 175, 55, 0.1);
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(42, 42, 42, 0.9));
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:empty {
    display: none;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.hidden {
    display: none;
}

/* Gallery Button */
.view-more-btn {
    display: block;
    margin: 4rem auto 0;
    padding: 1.2rem 3rem;
    background: var(--gradient-gold);
    color: var(--primary-color);
    text-decoration: none;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-timing);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
    position: relative;
    z-index: 2;
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* About Section */
.about {
    padding: 4rem 2rem;
    background: var(--gradient-2);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background: var(--gradient-2);
    margin-top: 2rem;
}

.testimonials h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--text-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.1);
}

.testimonial-content {
    position: relative;
    padding: 1rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    padding-left: 2rem;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    line-height: 1;
    color: var(--accent-color);
    opacity: 0.5;
}

.testimonial-content h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background: var(--gradient-1);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.contact-info h2,
.contact-social h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-social h3 {
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    transition: var(--transition-timing);
    background: var(--accent-color);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        height: auto;
        padding: 0;
    }

    main {
        margin-top: 140px;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        padding: 0;
        background: rgba(45, 45, 45, 0.98);
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        gap: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        line-height: 1;
    }

    .nav-links a {
        padding: 0.5rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1rem;
        min-height: calc(100vh - 140px);
        margin-top: 0;
    }

    .hero-content {
        text-align: center;
        padding: 1rem;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-image {
        margin: 1rem auto;
        max-width: 90%;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .contact-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .social-links {
        width: 100%;
    }

    .social-links a {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content,
    .contact-content {
        gap: 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}
