:root {
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --gold: #d4af37;
    --gold-dim: #a68b2c;
    --white: #ffffff;
    --grey: #2a2a2a;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Modal Styles */
#gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#gallery-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border: 2px solid var(--gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

#gallery-modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    z-index: 1002;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--gold);
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    z-index: 1002;
    padding: 20px;
    user-select: none;
    transition: color 0.3s;
}

.prev-btn:hover,
.next-btn:hover {
    color: var(--gold);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-weight: 400;
}

h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

h2.section-title {
    font-size: 3.5rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
}

h2.section-title.center {
    display: block;
    text-align: center;
}

h2.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

/* Buttons */
.gold-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.gold-btn:hover {
    background: var(--gold);
    color: var(--bg-color);
}

/* Header */
header {
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), transparent);
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links li a {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.nav-links li a:hover {
    color: var(--gold);
}

.cta-btn {
    border: 1px solid var(--white);
    padding: 10px 25px;
}

.cta-btn:hover {
    border-color: var(--gold);
    color: var(--gold) !important;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Background handled by slider */
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 6s ease-out;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: var(--gold);
}

/* Common Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
}

.about-image {
    height: 500px;
    background: var(--grey);
    position: relative;
    overflow: hidden;
}

.about-image .img-box {
    width: 100%;
    height: 100%;
    background: url('../assets/images/service_art.jpg') no-repeat center center/cover;
    position: relative;
    transition: transform 1.5s ease;
}

.about-image .img-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(145deg, #1e1e1e, #252525);
    padding: 40px;
    text-align: center;
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: linear-gradient(145deg, #252525, #1e1e1e);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #bbb;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    background: #222;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
}

.gallery-item:nth-child(1) {
    background-image: url('../assets/images/gallery_1.jpg');
}

.gallery-item:nth-child(2) {
    background-image: url('../assets/images/service_manicure.jpg');
}

.gallery-item:nth-child(3) {
    background-image: url('../assets/images/gallery_2.jpg');
}

.gallery-item:nth-child(4) {
    background-image: url('../assets/images/service_pedicure.jpg');
}

.gallery-item:nth-child(5) {
    background-image: url('../assets/images/gallery_3.jpg');
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
    transition: opacity 0.3s;
}

.gallery-item:hover::before {
    opacity: 0;
}

/* Masonry effect attempt with grid span */
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .address,
.contact-info .phone {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.contact-info .actions {
    display: flex;
    gap: 20px;
}

.whatsapp-btn,
.map-btn {
    padding: 12px 30px;
    border: 1px solid var(--grey);
    background: var(--grey);
    color: var(--white);
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.map-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-color);
}

.form-container input,
.form-container select {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--grey);
    color: var(--white);
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-container input:focus,
.form-container select:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

/* Footer */
footer {
    border-top: 1px solid var(--grey);
    padding: 50px 0;
    margin-top: 100px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
}

.socials a {
    margin-left: 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Scroll to Top Button */
#scroll-top-btn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    font-size: 1.5rem;
    border: none;
    outline: none;
    background-color: var(--gold);
    color: var(--bg-color);
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#scroll-top-btn:hover {
    background-color: var(--white);
    transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    header {
        padding: 20px;
    }

    .nav-links {
        display: none;
    }

    /* Simplified for now */
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: auto;
        grid-row: auto;
    }
}