/* ============================================
   AARNA MAKEUP STUDIO - Premium Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #c9a96e;
    --primary-dark: #b08d4f;
    --primary-light: #e8d5a8;
    --accent: #d4836d;
    --dark: #1a1a2e;
    --darker: #0f0f1a;
    --card-bg: #16162a;
    --text-light: #f0e6d3;
    --text-muted: #a09b92;
    --white: #ffffff;
    --gradient-gold: linear-gradient(135deg, #c9a96e, #e8d5a8, #c9a96e);
    --gradient-dark: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
    --shadow-gold: 0 4px 30px rgba(201, 169, 110, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--darker);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
}

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

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

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(201, 169, 110, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* --- Navbar --- */
.navbar-custom {
    background: rgba(15, 15, 26, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    padding: 12px 0;
    transition: var(--transition);
}

.navbar-custom.scrolled {
    background: rgba(15, 15, 26, 0.98) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    padding: 8px 0;
}

.navbar-brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.navbar-custom .nav-link {
    color: var(--text-light) !important;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 8px 18px !important;
    position: relative;
    letter-spacing: 0.5px;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 60%;
}

.navbar-custom .nav-link:hover {
    color: var(--primary) !important;
}

.navbar-toggler {
    border-color: var(--primary) !important;
}


.nav-btn {
    background: var(--gradient-gold) !important;
    color: var(--dark) !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 8px 24px !important;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* --- Section Styles --- */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2 .gold {
    color: var(--primary);
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero-banner.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.92) 0%, rgba(26, 26, 46, 0.75) 50%, rgba(15, 15, 26, 0.88) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 6s infinite;
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--dark);
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
    color: var(--dark);
}

.btn-outline-gold {
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-gold:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.hero-stats {
    margin-top: 60px;
    animation: fadeInUp 1s ease 0.8s both;
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- About Section --- */
.about-section {
    background: var(--gradient-dark);
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-image-border {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(201, 169, 110, 0.3);
    border-radius: 24px;
    pointer-events: none;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content .lead {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.about-features li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.about-features li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.about-address {
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
}

.about-address i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 10px;
}

.about-address p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* --- Services Section --- */
.services-section {
    background: var(--darker);
}

.service-card {
    background: var(--card-bg);
    border: 1px solid rgba(201, 169, 110, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: var(--shadow-gold);
}

.service-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-card-img .price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(15, 15, 26, 0.85);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.service-card-body {
    padding: 28px;
}

.service-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-light);
}

.service-card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-card-body .btn-book {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card-body .btn-book:hover {
    background: var(--primary);
    color: var(--dark);
}

/* --- Booking Section --- */
.booking-section {
    background: linear-gradient(135deg, var(--darker) 0%, #1a1a2e 100%);
    position: relative;
}

.booking-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.booking-form-wrapper {
    background: var(--card-bg);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-card);
    position: relative;
    z-index: 1;
}

.booking-form-wrapper .form-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.booking-form-wrapper .form-control,
.booking-form-wrapper .form-select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.15);
    color: var(--text-light);
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.booking-form-wrapper .form-control:focus,
.booking-form-wrapper .form-select:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
    color: var(--text-light);
}

.booking-form-wrapper .form-control::placeholder {
    color: var(--text-muted);
}

.booking-form-wrapper .form-select option {
    background: var(--dark);
    color: var(--text-light);
}

.booking-info-card {
    background: rgba(201, 169, 110, 0.06);
    border: 1px solid rgba(201, 169, 110, 0.12);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
}

.booking-info-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.booking-info-card .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.booking-info-card .info-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 4px;
}

.booking-info-card .info-item h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.booking-info-card .info-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* --- Gallery Section --- */
.gallery-section {
    background: var(--gradient-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 26, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.gallery-overlay span {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99998;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(201, 169, 110, 0.2);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
    z-index: 99999;
}

/* --- Contact Section --- */
.contact-section {
    background: var(--darker);
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid rgba(201, 169, 110, 0.08);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateY(-5px);
}

.contact-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-card .icon i {
    color: var(--primary);
    font-size: 1.4rem;
}

.contact-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.contact-card a {
    color: var(--primary);
}

.contact-card a:hover {
    text-decoration: underline;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.1);
    margin-top: 50px;
}

.map-wrapper iframe {
    display: block;
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(201, 169, 110, 0.08);
    padding: 60px 0 0;
}

.footer h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer p,
.footer li {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 169, 110, 0.08);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
}

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

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    color: var(--dark);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9999;
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

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

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6);
    }
}

/* --- Alert Messages --- */
.alert-booking {
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 0.95rem;
    border: none;
    animation: fadeInUp 0.5s ease;
}

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

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

/* --- Responsive --- */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .booking-form-wrapper {
        padding: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .section-header h2 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .booking-form-wrapper {
        padding: 24px;
    }

    .hero-buttons .btn-gold,
    .hero-buttons .btn-outline-gold {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .navbar-brand-text {
        font-size: 1.2rem;
    }
}