:root {
    --black: #080808;
    --dark: #101010;
    --gray: #181818;
    --light-gray: #999999;
    --white: #f5f5f5;
    --yellow: #d6ff00;
    --blue: #00eeff;
    --border: rgba(255, 255, 255, 0.12);

    --font-title: "Bebas Neue", sans-serif;
    --font-main: "DM Sans", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-main);
    overflow-x: hidden;
}

body::selection {
    background: var(--blue);
    color: var(--black);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
}

button {
    font-family: inherit;
}

.section {
    width: min(1180px, calc(100% - 50px));
    margin: auto;
}

h1,
h2,
h3 {
    font-family: var(--font-title);
    font-weight: 400;
}

h2 {
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: 0.82;
    letter-spacing: 1px;
}

h2 span {
    color: var(--blue);
}

.small-title {
    display: block;
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 85px;

    padding: 0 5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 1000;

    transition: 0.3s ease;
}

.header.scrolled {
    background: rgba(8, 8, 8, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--font-title);
    font-size: 2rem;
    line-height: 0.65;
    letter-spacing: 1px;
}

.logo span {
    display: block;
    color: var(--blue);
}

.navbar {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #aaa;
    transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue);
}

.header-button {
    background: var(--blue);
    color: var(--black);

    padding: 14px 20px;

    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1px;

    display: flex;
    gap: 12px;
    align-items: center;

    transition: 0.2s ease;
}

.header-button:hover {
    transform: translateY(-2px);
}

.menu-button {
    display: none;
    border: none;
    background: transparent;
    color: white;
    font-size: 1.4rem;
}

/* HERO */

.hero {
    min-height: 100vh;
    position: relative;

    display: flex;
    align-items: center;

    background:
        url("hero-barber-francais.jpg")
        center / cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.52),
            rgba(0, 0, 0, 0.28)
        );
}

.noise {
    position: absolute;
    inset: 0;
    opacity: 0.2;

    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 3px
        );
}

.hero-content {
    width: min(1180px, calc(100% - 50px));
    margin: auto;
    position: relative;
    z-index: 2;
}


.hero h1 {
    font-size: clamp(5rem, 12vw, 11rem);
    line-height: 0.76;
    letter-spacing: 2px;
}

.hero h1 span {
    color: var(--blue);
}

.hero-description {
    margin-top: 35px;
    max-width: 420px;

    line-height: 1.8;
    color: #bbb;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.button {
    padding: 18px 24px;

    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1px;

    display: flex;
    align-items: center;
    gap: 12px;
}

.button-primary {
    background: var(--blue);
    color: var(--black);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-bottom {
    position: absolute;
    bottom: 30px;

    width: 90%;
    left: 5%;

    display: flex;
    justify-content: space-between;

    font-size: 0.58rem;
    letter-spacing: 2px;
    color: #aaa;
}

.hero-bottom a {
    color: white;
}

/* MARQUEE */

.marquee {
    background: var(--blue);
    color: var(--black);

    overflow: hidden;
    white-space: nowrap;

    padding: 15px 0;
}

.marquee-content {
    font-family: var(--font-title);
    font-size: 2rem;
    letter-spacing: 2px;

    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* INTRO */

.intro {
    padding: 150px 0;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.intro-right > p {
    max-width: 520px;

    font-size: 1.2rem;
    line-height: 1.8;

    color: #bbb;
}

.intro-line {
    height: 1px;
    background: var(--border);
    margin: 50px 0 30px;
}

.intro-info {
    display: flex;
    gap: 50px;
}

.intro-info div {
    display: flex;
    flex-direction: column;
}

.intro-info strong {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 400;
    color: var(--blue);
}

.intro-info span {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #777;
}

/* SERVICES */

.services {
    background: var(--white);
    color: var(--black);
    padding: 150px 0;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    margin-bottom: 70px;
}

.services-header > p {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.8;
}

.services-list {
    border-top: 2px solid var(--black);
}

.service {
    display: grid;
    grid-template-columns: 70px 1fr auto;

    gap: 30px;
    align-items: center;

    padding: 30px 0;

    border-bottom: 1px solid #ddd;

    transition: 0.25s ease;
}

.service:hover {
    padding-left: 20px;
    padding-right: 20px;
    background: var(--blue);
}

.service-number {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: #888;
}

.service-name h3 {
    font-size: 2rem;
    letter-spacing: 1px;
}

.service-name p {
    margin-top: 5px;
    color: #777;
    font-size: 0.8rem;
}

.service > strong {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 400;
}

/* GALLERY */

.gallery {
    padding: 150px 0;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    margin-bottom: 70px;
}

.gallery-header > p {
    color: #777;
    line-height: 1.8;
}

.gallery-grid {
    width: min(1400px, 100%);

    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 8px;
}

.gallery-item {
    overflow: hidden;
    background: #111;
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);

    transition: 0.6s ease;
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.06);
}

/* QUOTE */

.quote-section {
    background: var(--blue);
    color: var(--black);

    padding: 130px 0;
}

.quote-section span {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.quote-section h2 {
    margin-top: 25px;
}

.quote-section em {
    font-style: normal;
    color: #555;
}

/* INFOS */

.infos {
    padding: 150px 0;
}

.infos-title {
    margin-bottom: 70px;
}

.infos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.info-card {
    min-height: 380px;

    padding: 40px;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    display: flex;
    flex-direction: column;
}

.info-icon {
    width: 50px;
    height: 50px;

    background: var(--blue);
    color: var(--black);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 45px;
}

.info-card > span {
    color: #777;

    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.8rem;
    line-height: 1;
}

.info-link {
    margin-top: auto;

    color: var(--blue);

    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.hours {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.hours div {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    font-size: 0.65rem;
    color: #777;
}

.hours strong {
    color: white;
    font-size: 0.65rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 18px;

    margin-top: 10px;
}

.contact-links a {
    font-size: 0.8rem;

    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--blue);
}

.walk-in {
    margin-top: 20px;

    background: var(--blue);
    color: var(--black);

    padding: 25px 30px;

    display: flex;
    align-items: center;
    gap: 20px;
}

.walk-in i {
    font-size: 1.5rem;
}

.walk-in div {
    display: flex;
    gap: 15px;
    align-items: center;
}

.walk-in strong {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 400;
}

.walk-in span {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* FOOTER */

.footer {
    border-top: 1px solid var(--border);
    padding: 50px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-family: var(--font-title);
    font-size: 2rem;
    line-height: 0.7;
}

.footer-logo span {
    color: var(--blue);
}

.footer p {
    color: #666;
    font-size: 0.6rem;
}

.socials {
    display: flex;
    gap: 25px;
}

.socials a {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ANIMATIONS */

.reveal {
    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .navbar {
        position: fixed;
        top: 85px;
        left: 0;

        width: 100%;

        background: var(--black);

        flex-direction: column;
        align-items: flex-start;

        padding: 30px 5%;

        transform: translateY(-150%);
        opacity: 0;

        transition: 0.3s ease;
    }

    .navbar.open {
        transform: translateY(0);
        opacity: 1;
    }

    .header-button {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .intro {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .infos-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        min-height: auto;
    }

    .services-header,
    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
}

@media (max-width: 600px) {

    .section {
        width: min(100% - 30px, 1180px);
    }

    .hero-content {
        width: min(100% - 30px, 1180px);
    }

    .hero h1 {
        font-size: 5.5rem;
    }

    .hero-bottom {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .button {
        width: 100%;
        justify-content: center;
    }

    .intro,
    .services,
    .gallery,
    .infos {
        padding: 90px 0;
    }

    .intro-info {
        gap: 25px;
    }

    .service {
        grid-template-columns: 40px 1fr;
    }

    .service > strong {
        grid-column: 2;
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-large,
    .gallery-wide {
        grid-column: span 2;
    }

    .walk-in,
    .walk-in div {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* MINI CARTE */

.map-card {
    margin-top: 20px;
    border: 1px solid var(--border);
    background: #0d0d0d;
    overflow: hidden;
}

.map-header {
    min-height: 150px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid var(--border);
}

.map-header > div > span {
    color: #777;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.map-header h3 {
    margin-top: 12px;
    font-size: 2.3rem;
    line-height: 0.9;
}

.map-header h3 strong {
    color: var(--blue);
    font-weight: 400;
}

.map-link {
    flex-shrink: 0;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--blue);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s ease;
}

.map-link:hover {
    background: var(--blue);
    color: var(--black);
    border-color: var(--blue);
    transform: translateY(-2px);
}

.map-frame {
    height: 380px;
    background: #111;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    filter: grayscale(0.35) contrast(1.05);
}

@media (max-width: 600px) {
    .map-header {
        padding: 28px 25px;
        align-items: flex-start;
        flex-direction: column;
    }

    .map-header h3 {
        font-size: 2rem;
    }

    .map-link {
        width: 100%;
        justify-content: center;
    }

    .map-frame {
        height: 300px;
    }
}


/* AVIS GOOGLE */

.reviews-section {
    padding: 115px 0 125px;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 214, 255, 0.045), transparent 30%),
        #080808;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.reviews-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 55px;
}

.reviews-eyebrow {
    display: block;
    margin-bottom: 13px;
    color: #777;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.reviews-heading h2 {
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.82;
    letter-spacing: -1px;
}

.reviews-heading h2 span {
    color: var(--blue);
    font-weight: 400;
}

.reviews-google-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 15px 18px;
    border: 1px solid var(--border);
    color: #eee;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: 0.2s ease;
}

.reviews-google-link:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
}

.google-g {
    font-family: Arial, sans-serif;
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 700;
    background: linear-gradient(135deg, #4285f4 15%, #34a853 45%, #fbbc05 68%, #ea4335 88%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.review-card {
    min-height: 365px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    background: #0d0d0d;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.review-card:hover {
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-4px);
}

.review-top,
.review-person,
.review-meta,
.review-actions {
    display: flex;
    align-items: center;
}

.review-top {
    justify-content: space-between;
}

.review-person {
    gap: 13px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.avatar-pink { background: #e83e78; }
.avatar-purple { background: #5b2db8; }
.avatar-blue { background: #5a68b8; }

.review-person strong {
    display: block;
    color: #f5f5f5;
    font-size: 0.88rem;
    font-weight: 600;
}

.review-person span {
    display: block;
    margin-top: 3px;
    color: #777;
    font-size: 0.65rem;
}

.review-menu {
    color: #999;
    font-size: 1.25rem;
    line-height: 1;
}

.review-meta {
    gap: 10px;
    margin-top: 22px;
    color: #777;
    font-size: 0.68rem;
}

.stars {
    color: #ffb400;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.review-text {
    margin: 20px 0 0;
    color: #ddd;
    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
    line-height: 1.65;
}

.review-text span {
    color: #999;
}

.review-visit {
    margin-top: auto;
    padding-top: 22px;
    color: #777;
    font-size: 0.66rem;
}

.review-actions {
    gap: 28px;
    margin-top: 23px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    color: #bbb;
    font-size: 0.68rem;
}

.review-actions span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.review-actions i {
    font-size: 0.75rem;
}

.reviews-footer {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    color: #666;
    font-size: 0.7rem;
}

.reviews-footer a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.reviews-footer a:hover {
    color: #fff;
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-height: auto;
    }

    .reviews-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .reviews-google-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .reviews-section {
        padding: 80px 0 90px;
    }

    .reviews-heading {
        margin-bottom: 35px;
    }

    .reviews-heading h2 {
        font-size: 3.1rem;
    }

    .review-card {
        padding: 24px;
    }

    .reviews-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
