/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #000000;
    --text-white: #ffffff;
    --text-black: #000000;
    --link-cyan: #E6FFFA;
    --link-cyan-hover: #b3fff0;
    --service-neon: #FF69B4;
    --contact-neon: #FF69B4;
    --button-white: #c4f0f4;
    /* --button-rose: #D98E8B; */
    --button-rose-hover: #8fe9e9;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    color: var(--text-white);
    background-color: var(--primary-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-bg);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 300;
    transition: color 0.3s ease;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--link-cyan);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    margin: 4px 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    height: 70vh;
    min-height: 500px;
    background: url('images/hero-bg.jpg') center/contain no-repeat;
    background-color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.3;
    max-width: 1000px;
    text-transform: lowercase;
    font-weight: 400;
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.service-section {
    padding: 6rem 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-content.reverse .service-image {
    order: 2;
}

.service-content.reverse .service-text {
    order: 1;
}

.service-image {
    width: 100%;
    position: relative;
    top: 80px;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.neon-icon {
    margin-bottom: 1rem;
    text-align: center;
}

.neon-icon img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.service-text h2 {
    font-size: 2rem;
    margin-bottom: 0rem;
    color: var(--text-white);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
}

.service-text > p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-item {
    margin-bottom: 0.5rem;
}

.service-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.service-item .service-name {
    color: var(--service-neon);
    font-size: 1.4rem;
}

.service-item .service-price {
    color: var(--text-white);
}

.service-item .duration {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
    color: var(--text-white);
}

.service-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.add-ons {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 0rem 0;
    border-left: 3px solid var(--service-neon);
}

.add-ons h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--service-neon);
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.add-ons p {
    margin: 0rem 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Buttons */
.btn-book {
    display: block;
    width: 100%;
    background: var(--button-white);
    color: var(--text-black);
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    margin-top: 2rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.6;
}

.btn-book:hover {
    background: var(--button-rose-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(217, 142, 139, 0.5);
}

.btn-tagline {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 0rem;
    opacity: 0.95;
    letter-spacing: 0.5px;
    text-transform: none;
    font-style: italic;
    white-space: nowrap;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0 8rem 0;
    text-align: center;
    background: var(--primary-bg);
}

.contact-logo {
    max-width: 280px;
    margin: 0 auto 0rem auto;
}

.contact-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-details {
    margin-top: 0rem;
}

.contact-address {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.contact-info-line {
    font-size: 1.1rem;
    color: var(--text-white);
    letter-spacing: 0.5px;
    font-weight: 400;
}

.contact-info-line a {
    color: var(--contact-neon);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-line a:hover {
    color: var(--text-white);
    text-shadow: 0 0 10px var(--contact-neon);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .service-content {
        gap: 3rem;
    }

    .neon-icon img {
        max-width: 250px;
    }

    .service-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-bg);
        transition: left 0.3s ease;
        justify-content: flex-start;
        padding-top: 2rem;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        padding: 0 2rem;
    }

    .nav-link {
        font-size: 1.3rem;
    }

    .hero {
        height: 35vh;
        min-height: 250px;
        padding: 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .service-content,
    .service-content.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-content.reverse .service-image {
        order: 1;
    }

    .service-content.reverse .service-text {
        order: 2;
    }

    .service-image {
        margin-top: 0;
        top: 0;
    }

    .neon-icon img {
        max-width: 220px;
    }

    .service-text h2 {
        font-size: 1.8rem;
    }

    .service-text > p {
        font-size: 1rem;
    }

    .service-item h3 {
        font-size: 1.3rem;
    }

    .btn-book {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .contact-section {
        padding: 4rem 0 5rem 0;
    }

    .contact-logo {
        max-width: 250px;
    }

    .contact-address,
    .contact-info-line {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 30vh;
        min-height: 200px;
        padding: 0;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .neon-icon img {
        max-width: 200px;
    }

    .service-text h2 {
        font-size: 1.5rem;
    }

    .nav-list {
        gap: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .service-section {
        padding: 3rem 0;
    }

    .contact-section {
        padding: 3rem 0 4rem 0;
    }

    .contact-logo {
        max-width: 220px;
    }

    .contact-address,
    .contact-info-line {
        font-size: 0.95rem;
    }

    .btn-book {
        width: 100%;
    }
}

/* Smooth animations */
.service-section {
    opacity: 1;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
