@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:wght@300;400;600;700&family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --hot-pink: #FF2E88;
    --deep-magenta: #A10F4A;
    --charcoal: #0F0F12;
    --soft-blush: #FFD1E6;
    --white: #FFFFFF;
    --glass-bg: rgba(15, 15, 18, 0.85);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--charcoal);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 46, 136, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(161, 15, 74, 0.15) 0%, transparent 40%);
}

h1,
h2,
h3,
.brand-font {
    font-family: 'Great Vibes', cursive;
}

h2 {
    font-size: 3rem;
    color: var(--hot-pink);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(255, 46, 136, 0.3);
}

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

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, var(--hot-pink), var(--deep-magenta));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 46, 136, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 46, 136, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--hot-pink);
    color: var(--hot-pink);
}

.btn-outline:hover {
    background: var(--hot-pink);
    color: white;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(15, 15, 18, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 46, 136, 0.1);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo img {
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 46, 136, 0.5));
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:hover {
    color: var(--hot-pink);
}

/* Mobile Sticky Book Now */
.mobile-book-now {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 90%;
    max-width: 400px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    background: radial-gradient(circle at center, rgba(161, 15, 74, 0.2) 0%, var(--charcoal) 70%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.2;
    pointer-events: none;
}

.hero-logo {
    width: 350px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 25px rgba(255, 46, 136, 0.6));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--soft-blush);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.hero .tagline {
    font-style: italic;
    color: #888;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* About Section */
.section-padding {
    padding: 100px 5%;
}

.about {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 46, 136, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about p {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 300;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-category-title {
    grid-column: 1 / -1;
    margin-top: 4rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.service-category-title::before,
.service-category-title::after {
    content: '';
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--hot-pink), transparent);
    flex-grow: 1;
    max-width: 200px;
    opacity: 0.7;
}

.service-category-title h3 {
    font-family: 'Great Vibes', cursive;
    color: var(--hot-pink);
    font-size: 3rem;
    text-shadow: 0 0 15px rgba(255, 46, 136, 0.4);
    margin: 0;
    line-height: 1;
    position: relative;
    top: 5px;
    /* Visual adjustment for the font */
}

.service-list {
    text-align: left;
    margin-bottom: 1rem;
    padding-left: 0;
}

.service-list li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #dedede;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 0.2rem;
}

.service-list li span:last-child {
    color: var(--hot-pink);
    font-weight: 600;
}

.service-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.8rem;
}

.service-card {
    background: var(--glass-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 46, 136, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--hot-pink);
    box-shadow: 0 15px 40px rgba(255, 46, 136, 0.2);
}

.service-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-info {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.5rem;
    color: var(--hot-pink);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Booking Form */
.booking-section {
    background: linear-gradient(to bottom, transparent, rgba(161, 15, 74, 0.1));
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 46, 136, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--soft-blush);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--hot-pink);
    background: rgba(255, 255, 255, 0.1);
}

.alt-booking {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 46, 136, 0.1);
}

/* Reviews */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    border-left: 5px solid var(--hot-pink);
}

.review-card i {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--hot-pink);
    opacity: 0.3;
    font-size: 2rem;
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.review-author {
    font-weight: 700;
    color: var(--soft-blush);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--hot-pink);
}

.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-details p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    padding: 5rem 5% 2rem;
    background: #050507;
    text-align: center;
    border-top: 1px solid rgba(255, 46, 136, 0.1);
}

.footer-logo {
    height: 80px;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }

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

    .nav-links {
        display: none;
    }

    .mobile-book-now {
        display: block;
    }
}

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

    .section-padding {
        padding: 60px 5%;
    }

    .about {
        padding: 2rem 1.5rem;
    }

    h2 {
        font-size: 2.2rem;
    }
}