/* =========================================
   LUXE-BARBER
   GLOBAL STYLES
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0b0b0b;
    color: #f5f0e8;
    font-family: "DM Sans", sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(201, 164, 92, 0.15);
}

.nav-container {
    max-width: 1300px;
    height: 85px;

    margin: auto;
    padding: 0 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 8px;

    font-family: "Cormorant Garamond", serif;
    letter-spacing: 2px;
}

.logo-symbol {
    color: #c9a45c;
    font-size: 22px;
}

.logo-main {
    font-size: 25px;
    font-weight: 700;
}

.logo-barber {
    color: #c9a45c;
    font-size: 25px;
    font-weight: 500;
}


/* NAV LINKS */

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    position: relative;

    color: #d5d0c8;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;

    transition: 0.3s;
}

.nav-links a:hover {
    color: #c9a45c;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: #c9a45c;

    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}


/* NAV BUTTON */

.nav-button {
    padding: 13px 23px;

    border: 1px solid #c9a45c;

    color: #c9a45c;

    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;

    transition: 0.3s;
}

.nav-button:hover {
    background: #c9a45c;
    color: #0b0b0b;
}


/* MOBILE BUTTON */

.mobile-menu-button {
    display: none;

    background: none;
    border: none;

    color: #c9a45c;
    font-size: 27px;

    cursor: pointer;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    padding: 120px 8% 70px;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(5,5,5,0.95),
            rgba(5,5,5,0.72),
            rgba(5,5,5,0.45)
        ),
        url("https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=2000&q=90");

    background-size: cover;
    background-position: center;
}


/* DARK OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 70% 50%,
            rgba(201,164,92,0.10),
            transparent 40%
        );
}


/* HERO CONTENT */

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 800px;
}

.hero-small {
    color: #c9a45c;

    font-size: 12px;
    letter-spacing: 5px;

    margin-bottom: 25px;
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(70px, 9vw, 150px);

    line-height: 0.82;

    font-weight: 500;

    letter-spacing: -3px;
}

.hero h1 span {
    display: block;

    color: #c9a45c;

    font-style: italic;

    margin-left: 80px;
}

.hero-description {
    max-width: 500px;

    margin-top: 35px;

    color: #c9c3ba;

    font-size: 16px;
    line-height: 1.8;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    gap: 15px;

    margin-top: 40px;
}

.gold-button,
.outline-button {
    display: inline-block;

    padding: 16px 30px;

    text-transform: uppercase;
    letter-spacing: 1.5px;

    font-size: 12px;

    transition: 0.3s;
}

.gold-button {
    background: #c9a45c;
    color: #090909;

    border: 1px solid #c9a45c;
}

.gold-button:hover {
    background: transparent;
    color: #c9a45c;

    box-shadow: 0 0 25px rgba(201,164,92,0.25);
}

.outline-button {
    border: 1px solid rgba(255,255,255,0.35);

    color: white;
}

.outline-button:hover {
    border-color: #c9a45c;
    color: #c9a45c;
}


/* HERO BOTTOM */

.hero-bottom {
    position: absolute;

    bottom: 30px;
    left: 8%;

    display: flex;
    align-items: center;
    gap: 20px;

    color: #8e887f;

    font-size: 10px;
    letter-spacing: 3px;
}

.hero-line {
    width: 80px;
    height: 1px;

    background: #c9a45c;
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.about,
.services,
.barbers,
.gallery,
.booking,
.contact {
    min-height: 70vh;

    padding: 120px 8%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.about {
    background: #11100f;
}

.services {
    background: #0b0b0b;
}

.barbers {
    background: #11100f;
}

.gallery {
    background: #0b0b0b;
}

.booking {
    background: #11100f;
    align-items: center;
    text-align: center;
}

.contact {
    background: #0b0b0b;
}


/* SECTION LABEL */

.section-label {
    color: #c9a45c;

    font-size: 11px;
    letter-spacing: 4px;

    margin-bottom: 30px;
}


/* SECTION HEADINGS */

section h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(50px, 7vw, 95px);

    font-weight: 500;

    line-height: 0.9;
}

section h2 span {
    color: #c9a45c;
    font-style: italic;
}


/* ABOUT TEXT */

.about p {
    max-width: 650px;

    margin-top: 35px;

    color: #aaa49c;

    font-size: 17px;
    line-height: 1.9;
}


/* CONTACT */

.contact p {
    margin-top: 30px;

    color: #aaa49c;
}


/* =========================================
   FOOTER
========================================= */

footer {
    padding: 60px 8%;

    text-align: center;

    background: #070707;

    border-top: 1px solid rgba(201,164,92,0.15);
}

.footer-logo {
    font-family: "Cormorant Garamond", serif;

    color: #c9a45c;

    font-size: 28px;
    letter-spacing: 3px;
}

footer p {
    margin-top: 12px;

    color: #777;

    font-size: 13px;
}

footer .copyright {
    margin-top: 30px;

    font-size: 11px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .nav-links,
    .nav-button {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero {
        padding: 120px 25px 70px;

        background-position: 65% center;
    }

    .hero h1 {
        font-size: clamp(60px, 17vw, 100px);
    }

    .hero h1 span {
        margin-left: 30px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;

        max-width: 250px;
    }

    .hero-bottom {
        left: 25px;
        right: 25px;

        gap: 10px;
    }

    .hero-line {
        width: 35px;
    }

    .about,
    .services,
    .barbers,
    .gallery,
    .booking,
    .contact {
        padding: 90px 25px;
    }
}

/* =========================================
   SERVICES SECTION
========================================= */

.services {
    min-height: auto;

    padding-top: 140px;
    padding-bottom: 140px;
}


/* SERVICES HEADING */

.services-heading {
    max-width: 750px;

    margin-bottom: 70px;
}

.services-heading p {
    max-width: 550px;

    margin-top: 30px;

    color: #8f8a83;

    font-size: 16px;
    line-height: 1.8;
}


/* SERVICES GRID */

.services-grid {
    max-width: 1300px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: rgba(201,164,92,0.18);

    border: 1px solid rgba(201,164,92,0.18);
}


/* SERVICE CARD */

.service-card {
    position: relative;

    min-height: 360px;

    padding: 38px;

    background: #11100f;

    transition: 0.4s;

    overflow: hidden;
}

.service-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    bottom: -80px;

    border-radius: 50%;

    background: rgba(201,164,92,0.06);

    transition: 0.5s;
}

.service-card:hover {
    background: #171512;

    transform: translateY(-6px);

    z-index: 2;
}

.service-card:hover::before {
    transform: scale(2);
}


/* CARD NUMBER */

.service-number {
    color: #5e5a54;

    font-size: 11px;

    letter-spacing: 2px;
}


/* ICON */

.service-icon {
    margin-top: 40px;

    color: #c9a45c;

    font-size: 28px;

    height: 35px;
}


/* TITLE */

.service-card h3 {
    margin-top: 25px;

    font-family: "Cormorant Garamond", serif;

    font-size: 34px;

    font-weight: 500;
}


/* DESCRIPTION */

.service-card p {
    margin-top: 15px;

    max-width: 280px;

    color: #858078;

    font-size: 13px;

    line-height: 1.7;
}


/* PRICE */

.service-bottom {
    position: absolute;

    left: 38px;
    right: 38px;
    bottom: 30px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,0.08);
}

.service-bottom span {
    color: #67625b;

    font-size: 10px;

    letter-spacing: 2px;
}

.service-bottom strong {
    color: #c9a45c;

    font-family: "Cormorant Garamond", serif;

    font-size: 25px;

    font-weight: 500;
}


/* FEATURED CARD */

.service-card.featured {
    background:
        linear-gradient(
            145deg,
            #191611,
            #0f0f0f
        );

    border: 1px solid rgba(201,164,92,0.35);
}

.service-card.featured h3 {
    color: #f5f0e8;
}


/* BADGE */

.service-badge {
    position: absolute;

    top: 25px;
    right: 25px;

    padding: 7px 12px;

    border: 1px solid rgba(201,164,92,0.4);

    color: #c9a45c;

    font-size: 8px;

    letter-spacing: 1.5px;
}


/* =========================================
   SERVICES MOBILE
========================================= */

@media (max-width: 900px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 340px;
    }

    .services-heading {
        margin-bottom: 45px;
    }

}

/* =========================================
   BARBERS SECTION
========================================= */

.barbers {
    min-height: auto;

    padding-top: 140px;
    padding-bottom: 150px;
}


/* HEADING */

.barbers-heading {
    max-width: 750px;

    margin-bottom: 75px;
}

.barbers-heading p {
    max-width: 550px;

    margin-top: 30px;

    color: #8f8a83;

    font-size: 16px;

    line-height: 1.8;
}


/* BARBERS GRID */

.barbers-grid {
    max-width: 1300px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* BARBER CARD */

.barber-card {
    overflow: hidden;

    background: #0c0c0c;
}


/* IMAGE */

.barber-image {
    position: relative;

    height: 520px;

    overflow: hidden;

    background: #161412;
}

.barber-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    filter: grayscale(25%);

    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}


/* IMAGE HOVER */

.barber-card:hover .barber-image img {
    transform: scale(1.06);

    filter: grayscale(0%);
}


/* IMAGE OVERLAY */

.barber-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.9),
            transparent 50%
        );

    pointer-events: none;
}


/* BARBER NUMBER */

.barber-number {
    position: absolute;

    top: 25px;
    left: 25px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201,164,92,0.5);

    color: #c9a45c;

    font-size: 11px;

    letter-spacing: 1px;
}


/* INSTAGRAM */

.barber-social {
    position: absolute;

    right: 25px;
    bottom: 25px;

    color: #c9a45c;

    font-size: 9px;

    letter-spacing: 2px;

    opacity: 0;

    transform: translateY(10px);

    transition: 0.4s;
}

.barber-card:hover .barber-social {
    opacity: 1;

    transform: translateY(0);
}


/* BARBER INFO */

.barber-info {
    min-height: 100px;

    padding: 25px 5px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.barber-info h3 {
    font-family: "Cormorant Garamond", serif;

    font-size: 30px;

    font-weight: 500;
}

.barber-info p {
    margin-top: 5px;

    color: #77716a;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.barber-info > span {
    color: #c9a45c;

    font-size: 9px;

    letter-spacing: 2px;
}


/* =========================================
   BARBERS MOBILE
========================================= */

@media (max-width: 900px) {

    .barbers-grid {
        grid-template-columns: 1fr;
    }

    .barber-image {
        height: 500px;
    }

}

/* =========================================
   GALLERY SECTION
========================================= */

.gallery {
    min-height: auto;

    padding-top: 140px;
    padding-bottom: 150px;
}


/* GALLERY HEADING */

.gallery-heading {
    max-width: 750px;

    margin-bottom: 75px;
}

.gallery-heading p {
    max-width: 550px;

    margin-top: 30px;

    color: #8f8a83;

    font-size: 16px;

    line-height: 1.8;
}


/* GALLERY GRID */

.gallery-grid {
    max-width: 1300px;

    display: grid;

    grid-template-columns: 1.25fr 0.75fr;

    grid-template-rows: 430px 330px;

    gap: 15px;
}


/* GALLERY ITEM */

.gallery-item {
    position: relative;

    overflow: hidden;

    background: #151311;

    cursor: pointer;
}


/* LARGE IMAGE */

.gallery-large {
    grid-row: span 2;
}


/* WIDE IMAGE */

.gallery-wide {
    grid-column: 2;
}


/* IMAGE */

.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    filter: grayscale(30%);

    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}


/* IMAGE HOVER */

.gallery-item:hover img {
    transform: scale(1.07);

    filter: grayscale(0%);
}


/* DARK GRADIENT */

.gallery-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.85),
            transparent 55%
        );

    pointer-events: none;
}


/* CAPTION */

.gallery-caption {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 22px;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    transform: translateY(8px);

    transition: 0.4s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}


/* NUMBER */

.gallery-caption span {
    color: #c9a45c;

    font-size: 10px;

    letter-spacing: 2px;
}


/* TITLE */

.gallery-caption strong {
    color: #f5f0e8;

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 500;
}


/* GOLD CORNER */

.gallery-item::before {
    content: "";

    position: absolute;

    z-index: 3;

    top: 18px;
    right: 18px;

    width: 25px;
    height: 25px;

    border-top: 1px solid #c9a45c;
    border-right: 1px solid #c9a45c;

    opacity: 0;

    transition: 0.4s;
}

.gallery-item:hover::before {
    opacity: 1;

    width: 45px;
    height: 45px;
}


/* =========================================
   GALLERY MOBILE
========================================= */

@media (max-width: 900px) {

    .gallery-grid {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: auto;

        gap: 12px;
    }

    .gallery-large,
    .gallery-wide {
        grid-row: auto;
        grid-column: auto;
    }

    .gallery-item {
        height: 380px;
    }

}
/* =========================================
   REVIEWS SECTION
========================================= */

.reviews {
    min-height: auto;

    padding: 140px 8% 150px;

    background: #11100f;

    border-bottom: 1px solid rgba(255,255,255,0.08);
}


/* HEADER */

.reviews-header {
    max-width: 750px;

    margin-bottom: 70px;
}


/* =========================================
   STATS
========================================= */

.stats-grid {
    max-width: 1300px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(201,164,92,0.2);

    border-bottom: 1px solid rgba(201,164,92,0.2);

    margin-bottom: 70px;
}

.stat {
    min-height: 150px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-right: 1px solid rgba(201,164,92,0.15);
}

.stat:last-child {
    border-right: none;
}

.stat strong {
    font-family: "Cormorant Garamond", serif;

    color: #c9a45c;

    font-size: 55px;

    font-weight: 500;

    line-height: 1;
}

.stat span {
    margin-top: 12px;

    color: #706b64;

    font-size: 9px;

    letter-spacing: 2px;
}


/* =========================================
   REVIEW GRID
========================================= */

.reviews-grid {
    max-width: 1300px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


/* REVIEW CARD */

.review-card {
    padding: 40px 35px;

    min-height: 310px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: #0b0b0b;

    border: 1px solid rgba(255,255,255,0.07);

    transition: 0.4s;
}

.review-card:hover {
    transform: translateY(-6px);

    border-color: rgba(201,164,92,0.35);
}


/* FEATURED REVIEW */

.featured-review {
    background:
        linear-gradient(
            145deg,
            #191611,
            #0d0d0d
        );

    border-color: rgba(201,164,92,0.3);
}


/* STARS */

.review-stars {
    color: #c9a45c;

    font-size: 13px;

    letter-spacing: 3px;
}


/* REVIEW TEXT */

.review-card > p {
    margin-top: 25px;

    color: #b0aaa2;

    font-family: "Cormorant Garamond", serif;

    font-size: 23px;

    line-height: 1.45;
}


/* AUTHOR */

.review-author {
    display: flex;

    align-items: center;

    gap: 15px;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,0.08);
}


/* AVATAR */

.review-avatar {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201,164,92,0.4);

    color: #c9a45c;

    font-size: 10px;

    letter-spacing: 1px;
}


/* AUTHOR NAME */

.review-author strong {
    display: block;

    color: #e8e2d9;

    font-size: 12px;

    font-weight: 500;
}

.review-author span {
    display: block;

    margin-top: 4px;

    color: #66615a;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


/* =========================================
   REVIEWS MOBILE
========================================= */

@media (max-width: 900px) {

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(2) {
        border-right: none;
    }

    .stat:nth-child(1),
    .stat:nth-child(2) {
        border-bottom: 1px solid rgba(201,164,92,0.15);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-height: 280px;
    }

}

@media (max-width: 500px) {

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: none;

        border-bottom: 1px solid rgba(201,164,92,0.15);
    }

    .stat:last-child {
        border-bottom: none;
    }

}

/* =========================================
   BOOKING SECTION
========================================= */

.booking {
    min-height: auto;

    padding: 140px 8%;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(201,164,92,0.08),
            transparent 35%
        ),
        #0b0b0b;

    align-items: stretch;

    text-align: left;
}


/* BOOKING CONTAINER */

.booking-container {
    max-width: 1300px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    align-items: start;
}


/* LEFT SIDE */

.booking-intro {
    position: sticky;

    top: 120px;
}

.booking-intro p {
    max-width: 430px;

    margin-top: 35px;

    color: #8f8a83;

    font-size: 15px;

    line-height: 1.9;
}


/* BOOKING NOTE */

.booking-note {
    max-width: 400px;

    margin-top: 45px;

    padding: 20px;

    border-left: 1px solid #c9a45c;

    background: rgba(201,164,92,0.04);

    color: #77716a;

    font-size: 11px;

    line-height: 1.6;
}

.booking-note span {
    margin-right: 10px;

    color: #c9a45c;
}


/* =========================================
   FORM
========================================= */

.booking-form-wrapper {
    padding: 45px;

    background: #11100f;

    border: 1px solid rgba(201,164,92,0.2);
}

.booking-form {
    width: 100%;
}


/* FORM ROW */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


/* FORM GROUP */

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;

    margin-bottom: 10px;

    color: #817b73;

    font-size: 9px;

    letter-spacing: 2px;
}


/* INPUTS */

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 16px 17px;

    border: 1px solid rgba(255,255,255,0.1);

    outline: none;

    background: #0b0b0b;

    color: #e8e2d9;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    transition: 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #4f4b46;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(201,164,92,0.7);

    box-shadow: 0 0 0 2px rgba(201,164,92,0.05);
}


/* SELECT */

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #11100f;

    color: #f5f0e8;
}


/* DATE INPUT */

.form-group input[type="date"] {
    color-scheme: dark;
}


/* TEXTAREA */

.form-group textarea {
    resize: vertical;

    min-height: 120px;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.booking-submit {
    width: 100%;

    padding: 19px 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: 1px solid #c9a45c;

    background: #c9a45c;

    color: #0b0b0b;

    cursor: pointer;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;

    letter-spacing: 2px;

    transition: 0.4s;
}

.booking-submit:hover {
    background: transparent;

    color: #c9a45c;

    box-shadow:
        0 0 30px rgba(201,164,92,0.12);
}

.submit-arrow {
    font-size: 20px;

    transition: 0.3s;
}

.booking-submit:hover .submit-arrow {
    transform: translateX(6px);
}


/* DISCLAIMER */

.booking-disclaimer {
    margin-top: 18px;

    color: #4f4b46;

    font-size: 9px;

    line-height: 1.6;

    text-align: center;
}


/* =========================================
   BOOKING MOBILE
========================================= */

@media (max-width: 900px) {

    .booking-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .booking-intro {
        position: static;
    }

    .booking-form-wrapper {
        padding: 25px;
    }

}


@media (max-width: 600px) {

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

}

/* ========================================
   CONTACT SECTION
========================================= */

.contact {
    min-height: auto;

    padding: 140px 8% 100px;

    background: #0b0b0b;
}


/* CONTAINER */

.contact-container {
    max-width: 1300px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 120px;

    align-items: start;
}


/* INTRO */

.contact-intro p {
    max-width: 450px;

    margin-top: 35px;

    color: #8f8a83;

    font-size: 15px;

    line-height: 1.9;
}


/* WHATSAPP BUTTON */

.contact-whatsapp {
    width: 260px;

    margin-top: 40px;

    padding: 17px 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: 1px solid rgba(201,164,92,0.5);

    color: #c9a45c;

    font-size: 10px;

    letter-spacing: 2px;

    transition: 0.4s;
}

.contact-whatsapp:hover {
    background: #c9a45c;

    color: #0b0b0b;

    border-color: #c9a45c;
}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-details {
    display: flex;

    flex-direction: column;

    border-top: 1px solid rgba(255,255,255,0.1);
}


/* CONTACT BLOCK */

.contact-block {
    display: grid;

    grid-template-columns: 50px 1fr;

    gap: 20px;

    padding: 35px 0;

    border-bottom: 1px solid rgba(255,255,255,0.1);
}


/* ICON */

.contact-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201,164,92,0.35);

    color: #c9a45c;

    font-size: 14px;
}


/* LABEL */

.contact-label {
    display: block;

    margin-bottom: 10px;

    color: #706b64;

    font-size: 9px;

    letter-spacing: 2px;
}


/* HEADING */

.contact-block h3 {
    font-family: "Cormorant Garamond", serif;

    color: #e9e3da;

    font-size: 28px;

    font-weight: 500;
}


/* PARAGRAPH */

.contact-block p {
    margin-top: 8px;

    color: #77716a;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   HOURS
========================================= */

.hours {
    display: flex;

    flex-direction: column;

    gap: 13px;
}

.hours div {
    display: flex;

    justify-content: space-between;

    gap: 40px;

    max-width: 480px;
}

.hours span {
    color: #77716a;

    font-size: 12px;
}

.hours strong {
    color: #b5afa7;

    font-size: 11px;

    font-weight: 500;
}


/* =========================================
   MAP
========================================= */

.map-placeholder {
    max-width: 1300px;

    height: 300px;

    margin: 90px auto 0;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            rgba(11,11,11,0.88),
            rgba(11,11,11,0.88)
        ),
        repeating-linear-gradient(
            45deg,
            #171614 0,
            #171614 1px,
            #11100f 1px,
            #11100f 40px
        );

    border: 1px solid rgba(201,164,92,0.18);
}


/* MAP LINES */

.map-placeholder::before,
.map-placeholder::after {
    content: "";

    position: absolute;

    background: rgba(201,164,92,0.1);
}

.map-placeholder::before {
    width: 100%;
    height: 1px;
}

.map-placeholder::after {
    width: 1px;
    height: 100%;
}


/* MAP CONTENT */

.map-content {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;
}

.map-pin {
    color: #c9a45c;

    font-size: 28px;

    margin-bottom: 5px;
}

.map-content strong {
    color: #e7e0d7;

    font-family: "Cormorant Garamond", serif;

    font-size: 25px;

    font-weight: 500;

    letter-spacing: 3px;
}

.map-content > span:last-child {
    color: #6f6962;

    font-size: 9px;

    letter-spacing: 3px;
}


/* =========================================
   CONTACT MOBILE
========================================= */

@media (max-width: 900px) {

    .contact-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .contact-whatsapp {
        width: 100%;
        max-width: 300px;
    }

    .hours div {
        flex-direction: column;

        gap: 4px;
    }

    .map-placeholder {
        height: 240px;

        margin-top: 60px;
    }

}

/* =========================================
   LUXURY MOBILE MENU
========================================= */

.mobile-menu-overlay {
    position: fixed;

    inset: 0;

    z-index: 2000;

    display: flex;

    flex-direction: column;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(201,164,92,0.08),
            transparent 35%
        ),
        #0a0a0a;

    opacity: 0;

    visibility: hidden;

    transform: translateY(-20px);

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease,
        transform 0.4s ease;

    overflow-y: auto;
}


/* OPEN STATE */

.mobile-menu-overlay.active {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* TOP */

.mobile-menu-top {
    height: 85px;

    padding: 0 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid rgba(201,164,92,0.15);
}


/* LOGO */

.mobile-menu-logo {
    font-family: "Cormorant Garamond", serif;

    color: #e9e3da;

    font-size: 20px;

    letter-spacing: 2px;
}

.mobile-menu-logo span {
    color: #c9a45c;
}


/* CLOSE */

.mobile-menu-close {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201,164,92,0.35);

    background: transparent;

    color: #c9a45c;

    font-size: 28px;

    font-weight: 300;

    cursor: pointer;

    transition: 0.3s;
}

.mobile-menu-close:hover {
    background: #c9a45c;

    color: #0a0a0a;
}


/* CONTENT */

.mobile-menu-content {
    flex: 1;

    padding: 50px 30px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


/* LABEL */

.mobile-menu-label {
    margin-bottom: 25px;

    color: #68625b;

    font-size: 9px;

    letter-spacing: 4px;
}


/* LINKS */

.mobile-menu-links {
    display: flex;

    flex-direction: column;
}


/* LINK */

.mobile-menu-links a {
    display: flex;

    align-items: center;

    gap: 20px;

    padding: 13px 0;

    color: #e8e2d9;

    font-family: "Cormorant Garamond", serif;

    font-size: 34px;

    font-weight: 500;

    border-bottom: 1px solid rgba(255,255,255,0.06);

    transition: 0.3s;
}

.mobile-menu-links a span {
    width: 25px;

    color: #c9a45c;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    letter-spacing: 1px;
}

.mobile-menu-links a:hover {
    color: #c9a45c;

    padding-left: 10px;
}


/* BOOK BUTTON */

.mobile-book-button {
    margin-top: 35px;

    padding: 18px 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: #c9a45c;

    color: #0a0a0a;

    font-size: 10px;

    letter-spacing: 2px;

    transition: 0.3s;
}

.mobile-book-button:hover {
    background: transparent;

    color: #c9a45c;

    border: 1px solid #c9a45c;
}


/* BOTTOM */

.mobile-menu-bottom {
    padding: 20px 30px;

    display: flex;

    justify-content: space-between;

    color: #57524c;

    font-size: 8px;

    letter-spacing: 2px;

    border-top: 1px solid rgba(255,255,255,0.06);
}


/* =========================================
   HAMBURGER
========================================= */

.mobile-menu-button {
    width: 42px;
    height: 42px;

    padding: 10px;

    display: none;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 6px;

    background: transparent;

    border: 1px solid rgba(201,164,92,0.3);

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 20px;
    height: 1px;

    background: #c9a45c;

    transition: 0.3s;
}


/* HAMBURGER ANIMATION */

.mobile-menu-button.active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.mobile-menu-button.active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}


/* =========================================
   MOBILE DISPLAY
========================================= */

@media (max-width: 900px) {

    .mobile-menu-button {
        display: flex;
    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 500px) {

    .mobile-menu-links a {
        font-size: 29px;

        padding: 11px 0;
    }

    .mobile-menu-content {
        padding: 35px 25px;
    }

}
/* ========================================
   FINAL POLISH — SCROLL ANIMATIONS
========================================= */

.about,
.services,
.barbers,
.gallery,
.reviews,
.booking,
.contact {
    position: relative;
}


/* Elements start slightly hidden */

.services-heading,
.barbers-heading,
.gallery-heading,
.reviews-header,
.booking-intro,
.booking-form-wrapper,
.contact-intro,
.contact-details,
.gallery-item,
.barber-card,
.service-card,
.review-card,
.stat {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


/* JavaScript adds this class */

.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}


/* =========================================
   FLOATING WHATSAPP BUTTON
========================================= */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 1500;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #c9a45c;

    background: #0b0b0b;

    color: #c9a45c;

    font-size: 23px;

    border-radius: 50%;

    box-shadow:
        0 8px 30px rgba(0,0,0,0.45);

    transition: 0.35s;
}

.whatsapp-float:hover {
    background: #c9a45c;

    color: #0b0b0b;

    transform: translateY(-5px);

    box-shadow:
        0 12px 35px rgba(201,164,92,0.25);
}


/* PULSE RING */

.whatsapp-float::before {
    content: "";

    position: absolute;

    inset: -6px;

    border: 1px solid rgba(201,164,92,0.25);

    border-radius: 50%;

    animation: whatsappPulse 2.5s infinite;
}

@keyframes whatsappPulse {

    0% {
        transform: scale(0.9);

        opacity: 0.8;
    }

    70% {
        transform: scale(1.2);

        opacity: 0;
    }

    100% {
        transform: scale(1.2);

        opacity: 0;
    }

}


/* =========================================
   BACK TO TOP
========================================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 100px;

    z-index: 1400;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201,164,92,0.35);

    background: rgba(11,11,11,0.9);

    color: #c9a45c;

    font-size: 16px;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: 0.3s;
}

.back-to-top.show {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    background: #c9a45c;

    color: #0b0b0b;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .whatsapp-float {
        right: 18px;
        bottom: 18px;

        width: 54px;
        height: 54px;
    }

    .back-to-top {
        right: 18px;
        bottom: 85px;
    }

}
