* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.hero {
    height: 100vh;
    background: url("images/hair.jpg") center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    background: rgba(0,0,0,0.45);
    padding: 50px;
    text-align: center;
    color: white;
    border-radius: 15px;
}

h2 {
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

p {
    font-size: 20px;
    margin-bottom: 35px;
}

.button {
    background: #c9a46c;
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 18px;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    z-index: 10;
}

.logo {
    color: white;
    font-size: 30px;
    font-weight: bold;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-size: 18px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #fc9a46;
}
.services{
    background:#f8f8f8;
    padding:80px 10%;
    text-align:center;
}

.services h2{
    font-size:42px;
    margin-bottom:50px;
}

.service-box{
    background:white;
    padding:30px;
    margin-bottom:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.service-box h3{
    color:#c99a46;
    margin-bottom:15px;
    font-size:28px;
}

.service-box p{
    color:#555;
    font-size:18px;
}
.services{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
}

.services h2{
    width:100%;
}

.service-box{
    width:300px;
}
.gallery{
    padding:80px 10%;
    background:white;
    text-align:center;
}

.gallery h2{
    font-size:42px;
    margin-bottom:50px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

.gallery-grid img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
    transition:0.3s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* ABOUT SECTION */

.about {
    padding: 80px 10%;
    background: #f8f8f8;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #555;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
* CONTACT SECTION */

.contact {
    background: #222;
    color: white;
    text-align: center;
    padding: 80px 10%;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    line-height: 1.8;
}

.contact-details {
    margin: 30px 0;
}

.contact-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: #d4a24c;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.contact-button:hover {
    background: #b8862f;
}
/* FOOTER */

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 30px;
}

footer p {
    margin: 8px 0;
}

footer p:first-child {
    font-size: 24px;
    font-weight: bold;
}

footer p:last-child {
    color: #bdbdbd;
    font-size: 14px;
}
.map-container {
    margin-top: 60px;
    border-radius: 12px;
    overflow: hidden;
}
/* Reviews */

.reviews {
    padding: 80px 10%;
    background: #faf7f2;
    text-align: center;
}

.reviews h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: #333;
}

.reviews-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-8px);
}

.review-card p:first-child {
    font-size: 24px;
    color: #d4a24c;
}

.review-card h3 {
    margin: 15px 0;
    color: #222;
}

.review-card p:last-child {
    color: #666;
    line-height: 1.6;
}
.pricing {
    background: #ffffff;
    padding: 80px 10%;
    text-align: center;
}

.pricing h2 {
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 30px;
}

.pricing p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 20px;
}

.pricing ul {
    max-width: 600px;
    margin: 30px auto;
    text-align: left;
    list-style: none;
    padding: 0;
}

.pricing ul li {
    padding: 10px 0;
    font-size: 18px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.pricing strong {
    color: #d4af37;
}
.pricing-button {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 28px;
    background: #d4af37;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.pricing-button:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}
.before-after {
    padding: 80px 10%;
    background: #f9f9f9;
    text-align: center;
}

.before-after h2 {
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 15px;
}

.before-after p {
    color: #666;
    margin-bottom: 40px;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.transformation {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.transformation img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.transformation img:hover {
    transform: scale(1.03);
}
.pricing-button {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 35px;
    background: #d4a24c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.pricing-button:hover {
    background: #b98a36;
    transform: translateY(-2px);
}

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        padding: 15px 20px;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-top: 12px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero {
        min-height: 85vh;
        padding: 20px;
    }

    .overlay {
        width: 100%;
        padding: 30px 20px;
    }

    .overlay h1 {
        font-size: 40px;
    }

    .overlay h2 {
        font-size: 18px;
    }

    .services,
    .pricing,
    .gallery,
    .before-after,
    .about,
    .reviews,
    .contact {
        padding: 60px 20px;
    }

    .gallery-grid,
    .before-after-grid,
    .reviews-container {
        grid-template-columns: 1fr;
    }

    .about-container {
        flex-direction: column;
    }

    .contact-container {
        width: 100%;
    }

    .contact h2,
    .pricing h2,
    .before-after h2 {
        font-size: 32px;
    }

    .pricing-button,
    .contact-button {
        padding: 14px 24px;
        font-size: 15px;
    }

    .map-container iframe {
        height: 280px;
    }
}