:root {
    /* Royal Purple & Gold Palette */
    --dark: #2A0944;       /* Deep Royal Purple */
    --gold: #A12568;       /* Vibrant Magenta/Purple Accent */
    --light: #FAF7F2;      /* Warm Cream Background */
    --white: #ffffff;      /* Pure White */
    --accent: #FEC260;     /* Warm Gold for Highlights */
    --glow-color: rgba(161, 37, 104, 0.4); /* Purple Glow */
}

/* FIX: Stable Scroll & Anti-Shift Logic */
html, body {
    scroll-behavior: auto !important; /* Stops the drifting/jumping */
    overflow-x: hidden !important;    /* Prevents sideways shifting */
    width: 100%;
    position: relative;
}

/* FIXED: Added the missing '*' selector here */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

/* Nav Styles with Sparkle Effect */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%; /* Reduced vertical padding to accommodate larger logo */
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
    overflow: visible; /* Changed from hidden to allow logo to breathe */
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    min-height: 100px; /* Ensures the nav bar is tall enough for the logo */
    width: 100%;
}

nav::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.6);
    transform: rotate(30deg);
    animation: sparkle 4s infinite;
}

@keyframes sparkle {
    0% { left: -60%; }
    20% { left: 120%; }
    100% { left: 120%; }
}

/* UPDATED: Glowing Logo & Support for Image Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 2;
    max-width: 60%; /* Stability fix */
}

/* Logo Image Fixes - OPTIMIZED FOR WIDE LOGO IMG-20260116-WA0038.jpg */
.logo img {
    width: 280px !important; /* Specific width for horizontal clarity */
    height: auto !important;
    max-width: 100%;         /* Stability for mobile screens */
    display: block !important;
    object-fit: contain !important;
    margin: 10px 0;
    transition: transform 0.3s ease;
    filter: brightness(1.05) drop-shadow(0px 4px 8px rgba(0,0,0,0.3)); /* Premium visibility */
}

.logo:hover img {
    transform: scale(1.05);
}

@keyframes logoGlowPulse {
    0% { text-shadow: 0 0 5px var(--gold); }
    100% { text-shadow: 0 0 15px var(--gold), 0 0 25px var(--accent); }
}

/* UPDATED: Beautified Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    position: relative;
    z-index: 2;
    align-items: center;
}

.nav-links li { margin: 0 8px; }

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
    background: var(--light);
    border: 1px solid var(--gold);
    box-shadow: 0 4px 12px var(--glow-color);
    transform: translateY(-2px);
}

/* Glowing Nav Button */
.nav-cta {
    background: var(--dark);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
    animation: accentGlow 3s infinite;
    transition: transform 0.3s;
}

.nav-cta:hover { transform: scale(1.05); }

/* Hero Styles */
.hero {
    height: 90vh;
    background: url('https://images.unsplash.com/photo-1622286330961-a345bc2b3918?q=80&w=2070') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    width: 100%;
}

.hero-overlay {
    background: rgba(42, 9, 68, 0.4);
    padding: 40px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; margin-bottom: 10px; text-shadow: 2px 2px 10px rgba(0,0,0,0.3); }

/* UPDATED: Premium Glowing Purple Button */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--dark));
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
    font-weight: bold;
    border-radius: 50px;
    border: 2px solid var(--accent);
    animation: goldGlow 2s infinite;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-gold:hover {
    transform: scale(1.08) translateY(-5px);
    background: linear-gradient(135deg, var(--accent), var(--gold));
    color: var(--dark);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* PURPLE & GOLD GLOW ANIMATIONS */
@keyframes goldGlow {
    0% { box-shadow: 0 0 5px var(--gold); }
    50% { box-shadow: 0 0 20px var(--gold), 0 0 30px var(--glow-color); }
    100% { box-shadow: 0 0 5px var(--gold); }
}

@keyframes accentGlow {
    0% { box-shadow: 0 0 5px var(--accent); }
    50% { box-shadow: 0 0 15px var(--accent); }
    100% { box-shadow: 0 0 5px var(--accent); }
}

/* Intro Section */
.intro { padding: 100px 10%; text-align: center; }
.intro h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 20px; color: var(--dark); }
.intro p { max-width: 700px; margin: 0 auto; font-size: 1.1rem; color: #555; }

/* Testimonials Section Styles */
.testimonials {
    padding: 100px 10%;
    background-color: var(--white);
    text-align: center;
}

.testi-header { margin-bottom: 50px; }

.badge {
    background: var(--light);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testi-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: 2.2rem;
    margin-top: 15px;
}

.testi-header p {
    color: var(--accent);
    font-weight: 500;
    margin-top: 5px;
}

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

.testi-card {
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
    border-bottom: 4px solid var(--gold);
    transition: 0.3s;
    text-align: left;
}

.testi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(161, 37, 104, 0.1);
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testi-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testi-card h4 {
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

/* Floating WhatsApp with Glow */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    font-weight: bold;
    z-index: 2000;
    animation: whatsappGlow 2s infinite;
    transition: 0.3s;
}

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

@keyframes whatsappGlow {
    0% { box-shadow: 0 0 5px #25d366; }
    50% { box-shadow: 0 0 20px #25d366; }
    100% { box-shadow: 0 0 5px #25d366; }
}

/* Services Specific Styles */
.services-header {
    text-align: center;
    padding: 80px 5%;
    background-color: var(--light);
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 10%;
    justify-content: center;
}

.service-category {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.service-category h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
}

.service-item {
    margin-bottom: 25px;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.service-item p {
    font-size: 0.95rem;
    color: #666;
}

.services-cta {
    text-align: center;
    padding: 80px;
    background: var(--dark);
    color: var(--white);
}

/* --- NEW PRICE LIST SECTION --- */
.price-list-section {
    padding: 80px 10%;
    background: var(--dark);
    color: var(--white);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    border-bottom: 1px dashed rgba(254, 194, 96, 0.3);
    padding-bottom: 5px;
}

.price-name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.price-value {
    color: var(--accent);
    font-weight: bold;
    font-family: 'Playfair Display', serif;
}

/* Professional Footer Styles */
.pro-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 10% 30px;
    margin-top: 50px;
    border-top: 4px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-bottom: 50px;
}

.footer-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-contact h4, .footer-socials h4 {
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--gold);
}

.footer-contact p, .footer-socials a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-socials a:hover { color: var(--gold); padding-left: 5px; }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: #666;
}

/* Portfolio Gallery Styles - UPDATED FIX */
.portfolio {
    padding: 80px 10%;
    background-color: var(--light);
    width: 100%;
}

.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    grid-auto-rows: 300px !important; 
    gap: 20px !important;
    width: 100%;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--dark);
    transition: 0.5s ease;
    height: 100%;
}

.gallery-item.large {
    grid-row: span 2;
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 0.9;
    transition: 0.5s;
    display: block !important;
}

.gallery-item .overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, var(--dark));
    color: var(--accent);
    transition: 0.4s;
    display: flex;
    align-items: flex-end;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px var(--glow-color);
    z-index: 10;
}

.gallery-item:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.gallery-item:hover .overlay {
    bottom: 0;
}

.gallery-item span {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .gallery-item.large { grid-column: span 1; grid-row: span 1; }
    .gallery-item.tall { grid-row: span 1; }
}

@media (max-width: 768px) {
    .gallery-grid { 
        grid-template-columns: 1fr !important; 
        grid-auto-rows: 350px !important; 
    }
}

/* About Page Specific Styles */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(42, 9, 68, 0.6), rgba(42, 9, 68, 0.6)),
    url('https://images.unsplash.com/photo-1593121925328-369cc8459c08?q=80&w=2070') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    width: 100%;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--accent);
}

.about-content {
    padding: 100px 10%;
    background-color: var(--white);
    text-align: center;
}

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

.bio h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin: 20px 0;
}

.bio p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

.bio strong {
    color: var(--gold);
}

/* Contact Page Specific Styles */
.contact-header {
    height: 40vh;
    background: linear-gradient(rgba(42, 9, 68, 0.8), rgba(42, 9, 68, 0.8)),
    url('https://images.unsplash.com/photo-1516975080664-ed2fc6a32937?q=80&w=2070') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    width: 100%;
}

.contact-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent);
}

.contact-container {
    padding: 80px 10%;
    display: flex;
    justify-content: center;
    background-color: var(--light);
}

.contact-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(42, 9, 68, 0.1);
    max-width: 500px;
    width: 100%;
    text-align: center;
    border-top: 5px solid var(--gold);
}

.contact-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    margin-bottom: 15px;
    margin-top: 10px;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Shop Page Styling */
.shop-header {
    height: 45vh;
    background: linear-gradient(rgba(42, 9, 68, 0.7), rgba(42, 9, 68, 0.7)),
    url('https://images.unsplash.com/photo-1600948836101-f9ffda59d250?q=80&w=2070') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

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

.product-card {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(42, 9, 68, 0.1);
}

.product-img-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

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

.product-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.product-price {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card .btn-gold {
    width: 100%;
    text-align: center;
    padding: 12px;
}

/* MOBILE NAVIGATION UPDATE - OPTIMIZED FOR WIDE LOGO */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 20px 5%;
        height: auto;
        min-height: auto;
        text-align: center;
    }

    .nav-links { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 5px; 
        margin: 15px 0; 
        padding: 0; 
    } 
    
    .nav-links li { margin: 4px; } 
    
    .nav-links a { 
        font-size: 0.75rem; 
        padding: 6px 12px; 
    } 
    
    .nav-cta { 
        width: 100%; 
        text-align: center; 
    } 
    
    /* Mobile Logo Fix - Increased width for visibility */
    .logo img {
        width: 250px !important;
        height: auto !important;
    }
}

@media (max-width: 600px) {
    /* Resets large/tall grid spans so images don't push each other off-screen */
    .gallery-item.large, .gallery-item.tall {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .gallery-grid { 
        grid-template-columns: 1fr !important; 
        grid-auto-rows: 350px !important; 
    } 
}
