:root {
    --bg-color: #050505;
    --accent-gold: #c5a059;
    --text-white: #ffffff;
    --text-muted: #888888;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(197, 160, 89, 0.1);
    --card-hover: rgba(197, 160, 89, 0.05);
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --tracking: 0.15em;
}

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

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

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: var(--tracking);
    text-transform: uppercase;
}

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

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.logo span {
    color: var(--accent-gold);
}

.search-container {
    display: flex;
    gap: 0.5rem;
    background: transparent;
    padding: 5px 0px;
    border-bottom: 1px solid var(--accent-gold);
    transition: var(--transition);
}

.search-container input {
    background: transparent;
    border: none;
    color: white;
    padding: 5px;
    outline: none;
    width: 250px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.search-container button {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--accent-gold);
}

/* Hero */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1522338242992-e1a54906a8da?auto=format&fit=crop&q=80&w=2000') center/cover fixed;
    margin-bottom: 80px;
    animation: fadeIn 1.5s ease-out;
}

.hero h2 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    line-height: 1.1;
}

.hero p {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

/* Salon Grid */
.salon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 80px;
}

.salon-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 0px;
    /* Sharp corners for luxury */
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    animation: fadeInUp 0.8s ease-out both;
}

.salon-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    background: var(--card-hover);
}

.card-img {
    height: 220px;
    overflow: hidden;
}

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

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

.card-content {
    padding: 25px;
}

.salon-domain {
    font-size: 0.7rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 500;
}

.card-content h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    line-height: 1.2;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    height: 50px;
    overflow: hidden;
}

.view-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
}

.view-btn:hover {
    background: var(--accent-gold);
    color: black;
}

/* Detail Page */
.back-btn {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.back-btn:hover {
    color: var(--accent-gold);
}

.salon-detail-hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 60px;
}

.salon-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(5, 5, 5, 1));
}

.salon-detail-hero h2 {
    position: relative;
    font-size: 5rem;
    color: var(--accent-gold);
    z-index: 1;
}

.salon-detail-section {
    padding: 80px 0;
}

.salon-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.salon-split.reverse {
    direction: rtl;
}

.salon-split.reverse div {
    direction: ltr;
}

.split-img {
    height: 500px;
    border: 1px solid var(--accent-gold);
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 10px;
}

/* Services */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.service-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

/* Gallery Section */
.gallery-section h3 {
    text-align: center;
    margin-bottom: 40px;
}

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.book-now-btn {
    background: linear-gradient(45deg, var(--accent-gold), #8a6d29);
    color: black;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.book-now-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(197, 160, 89, 0.4);
}

.salon-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    margin-top: 40px;
}

.details-text {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    border-left: 1px solid var(--glass-border);
    padding-left: 40px;
}

.details-text h1,
.details-text h2,
.details-text h3 {
    margin: 40px 0 20px;
    color: var(--accent-gold);
    font-size: 1.8rem;
}

.details-text p {
    margin-bottom: 1.5rem;
    color: #ccc;
    font-size: 1.1rem;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

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

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

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

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

.lightboxImg {
    max-width: 90%;
    max-height: 90%;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 3rem;
    cursor: pointer;
    color: white;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.5);
    margin-top: 100px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

/* Responsive */
@media (max-width: 992px) {
    .salon-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-img {
        height: 350px;
        order: -1;
    }

    .salon-detail-hero h2 {
        font-size: 3rem;
    }
}

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

    .search-container input {
        width: 150px;
    }
}

.loader {
    text-align: center;
    padding: 50px;
    font-size: 1.5rem;
    color: var(--accent-gold);
}