* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0d0d0d;
    color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

nav {
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: #d4af37;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: #ddd;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-btn {
    background: #d4af37;
    color: #111 !important;
    padding: 11px 18px;
    border-radius: 30px;
    font-weight: 700;
}

.menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.92),
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.82)),
        url("salon\ image.jpeg");

    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 700px;
    padding-top: 70px;
    animation: fadeUp 1s ease;
}

.small-title {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(45px, 7vw, 82px);
    line-height: 1;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #d4af37;
}

.hero p {
    color: #ddd;
    max-width: 570px;
    font-size: 17px;
    margin-bottom: 32px;
}

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 25px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.btn-gold {
    background: #d4af37;
    color: #111;
}

.btn-gold:hover {
    transform: translateY(-3px);
    background: #f0ce59;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #111;
}

section {
    padding: 95px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title small {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title h2 {
    font-size: 42px;
    margin-top: 8px;
}

.section-title p {
    color: #999;
    max-width: 600px;
    margin: 12px auto 0;
}

.about {
    background: #111;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-img {
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.about-text h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

.about-text h3 span {
    color: #d4af37;
}

.about-text p {
    color: #aaa;
    margin-bottom: 18px;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 28px;
}

.feature {
    border: 1px solid #292929;
    padding: 18px;
    border-radius: 8px;
    background: #151515;
}

.feature strong {
    display: block;
    color: #d4af37;
    margin-bottom: 5px;
}

.feature span {
    color: #aaa;
    font-size: 14px;
}

.services {
    background: #0d0d0d;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    padding: 28px;
    background: #151515;
    border: 1px solid #292929;
    border-radius: 10px;
    transition: 0.35s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
}

.service-icon {
    font-size: 35px;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.price {
    color: #d4af37;
    font-size: 20px;
    font-weight: bold;
}


.gallery {
    background: #111;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-item {
    height: 280px;
    overflow: hidden;
    border-radius: 7px;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.booking {
    background:
        linear-gradient(rgba(0, 0, 0, 0.87), rgba(0, 0, 0, 0.87)),
        url("salon\ image.jpeg");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.booking-box {
    max-width: 850px;
    margin: auto;
    background: rgba(20, 20, 20, 0.92);
    padding: 40px;
    border: 1px solid #333;
    border-radius: 12px;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.input-group.full {
    grid-column: 1 / -1;
}

label {
    color: #bbb;
    font-size: 14px;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #333;
    background: #0c0c0c;
    color: #fff;
    border-radius: 6px;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #d4af37;
}

textarea {
    min-height: 110px;
    resize: vertical;
}

.booking-btn {
    border: none;
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
    font-size: 15px;
}

.contact {
    background: #0d0d0d;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-card {
    background: #151515;
    padding: 30px;
    border: 1px solid #292929;
    border-radius: 10px;
}

.contact-card h3 {
    margin-bottom: 20px;
}

.contact-item {
    padding: 13px 0;
    border-bottom: 1px solid #252525;
    color: #aaa;
}

.contact-item strong {
    color: #d4af37;
    margin-right: 8px;
}

.map-btn {
    margin-top: 20px;
}

footer {
    padding: 30px 0;
    background: #080808;
    border-top: 1px solid #222;
    text-align: center;
}

footer h3 {
    margin-bottom: 8px;
}

footer h3 span {
    color: #d4af37;
}

footer p {
    color: #777;
    font-size: 13px;
}

.whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    transition: 0.3s;
}

.whatsapp:hover {
    transform: scale(1.1);
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: 0.8s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 800px) {

    .nav-links {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #0d0d0d;
        flex-direction: column;
        text-align: center;
        padding: 25px;
        display: none;
    }

    .nav-links.show {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .nav-btn {
        display: inline-block;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-img {
        height: 380px;
    }
}

@media (max-width: 550px) {

    section {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 15px;
    }

    .service-grid,
    .gallery-grid,
    .booking-form,
    .features {
        grid-template-columns: 1fr;
    }

    .input-group.full {
        grid-column: auto;
    }

    .booking-box {
        padding: 25px 18px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .about-img {
        height: 300px;
    }
}