/* 
   Kirti Dixit Makeup Studio - Luxury Theme
   ----------------------------------------
   Colors:
   Background Primary: #0A0A0A
   Background Secondary: #111111
   Luxury Gold: #D4AF37
   Accent Gold: #E6C76E
   Text: #FFFFFF
*/

:root {
    --bg-primary: #0A0A0A;
    --bg-secondary: #111111;
    --gold-luxury: #D4AF37;
    --gold-accent: #E6C76E;
    --gold-dark: #A68A28;
    --text-primary: #FFFFFF;
    --text-muted: #B3B3B3;
    --glass-bg: rgba(26, 26, 26, 0.4);
    --glass-border: rgba(212, 175, 55, 0.2);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

/* Typography & Titles */
.section-title {
    font-size: 2.8rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-title span {
    color: var(--gold-luxury);
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-luxury) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-underline {
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, var(--gold-luxury), transparent);
    margin-bottom: 30px;
}

.title-underline.center {
    margin: 0 auto 30px auto;
    background: linear-gradient(90deg, transparent, var(--gold-luxury), transparent);
}

.section-subtitle {
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
}

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

.mb-4 {
    margin-bottom: 2rem;
}

/* Utilities */
.gold-text {
    color: var(--gold-luxury);
}

/* Glassmorphism & Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-luxury);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.with-gold-border {
    position: relative;
    border-radius: 12px;
    padding: 3px;
    background: linear-gradient(135deg, var(--gold-accent), transparent 60%);
}

.with-gold-border > * {
    border-radius: 9px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-gold-filled {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-luxury) 100%);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold-filled:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    border: 1px solid var(--gold-luxury);
    color: var(--gold-luxury);
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1);
}

.btn-whatsapp {
    background: #25D366;
    color: #FFF;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

.w-100 {
    width: 100%;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo img {
    height: 45px; /* Adjust according to logo aspect ratio */
    transition: var(--transition-smooth);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link:not(.btn-gold)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-luxury);
    transition: var(--transition-smooth);
}

.nav-link:not(.btn-gold):hover::after,
.nav-link:not(.btn-gold).active::after {
    width: 100%;
}

.nav-link:not(.btn-gold):hover,
.nav-link:not(.btn-gold).active {
    color: var(--gold-luxury);
}

.nav-link.btn-gold {
    padding: 8px 20px;
    border: 1px solid var(--gold-luxury);
    border-radius: 20px;
    color: var(--gold-luxury);
}

.nav-link.btn-gold:hover {
    background: var(--gold-luxury);
    color: var(--bg-primary);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--gold-luxury);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 20%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: left;
    padding-top: 80px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* About Section */
.parallax-bg {
    background-color: var(--bg-secondary);
    background-image: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.stats-row {
    display: flex;
    gap: 30px;
}

.stat-box {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.stat-box i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.stat-box h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Services */
.services {
    background-color: var(--bg-primary);
}

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

.service-card {
    text-align: center;
    padding: 40px 30px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border: 1px solid var(--gold-luxury);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-luxury);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--gold-luxury);
    color: var(--bg-primary);
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Gallery */
.gallery {
    background-color: var(--bg-secondary);
}

.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    color: var(--text-primary);
    font-size: 2rem;
    opacity: 0;
    z-index: 2;
    transition: all 0.4s ease;
}

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

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover .gallery-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--gold-luxury);
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--gold-luxury);
}

/* Reviews */
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.rating-badge {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 40px;
    margin: 0 auto;
    border-color: var(--gold-luxury);
}

.rating-badge h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.review-card {
    padding: 40px 30px;
    position: relative;
}

.review-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 6rem;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
}

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

.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.reviewer-name {
    color: var(--gold-luxury);
    font-size: 1.1rem;
}

/* Book Appointment */
.book-appointment {
    background: url('https://lh3.googleusercontent.com/p/AF1QipNy6Ju3bpgugYDLPs1tIpKAzhjAvEGN12fzPKdS') center/cover fixed;
    position: relative;
}

.book-appointment::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 10, 10, 0.85);
}

.book-container {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.book-form {
    padding: 40px;
    background: rgba(17, 17, 17, 0.7);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #FFF;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-luxury);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-group select option {
    background: var(--bg-secondary);
    color: #FFF;
}

/* Footer & Map */
.map-container {
    width: 100%;
    height: 350px;
    filter: invert(90%) hue-rotate(180deg) brightness(80%) contrast(80%); /* Dark map effect */
}

.footer-content {
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 30px;
}

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

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-col h3 {
    color: var(--gold-luxury);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--gold-luxury);
}

.links-col ul li {
    margin-bottom: 15px;
}

.links-col ul li a {
    color: var(--text-muted);
}

.links-col ul li a:hover {
    color: var(--gold-luxury);
    padding-left: 5px;
}

.contact-col p {
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-col i {
    color: var(--gold-luxury);
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-primary);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-icon:hover {
    background: var(--gold-luxury);
    color: var(--bg-primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.social-icon.justdial {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
}

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

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: ripple 1.5s infinite;
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .about-container { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .masonry-grid { column-count: 2; }
}

@media (max-width: 768px) {
    .section-padding { padding: 70px 0; }
    
    .mobile-menu-btn { display: block; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        border-left: 1px solid var(--gold-luxury);
    }
    
    .nav-links.active { right: 0; }
    
    .hero-title { font-size: 2.8rem; }
    .hero-content { padding-top: 0; }
    
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .masonry-grid { column-count: 1; }
    .stats-row { flex-direction: column; }
}
