@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --bg: #0c0c0c;
    --card: #151515;
    --text: #f5f2eb;
    --muted: #aaa;
    --accent: #c8a45d;
    --border: #292929;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
}

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


/* NAVIGATION */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(12,12,12,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 18px 25px;

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

.logo {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #ccc;
    font-size: 14px;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-button {
    padding: 10px 18px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 13px;
}

.menu-btn {
    display: none;
    background: none;
    border: 0;
    color: white;
    font-size: 25px;
}


/* HERO */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 140px 8% 80px;

    background:
        linear-gradient(90deg,
        rgba(0,0,0,.9),
        rgba(0,0,0,.45)),
        url("https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=1800&q=85")
        center/cover;
}

.hero-content {
    max-width: 700px;
}

.eyebrow {
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(55px, 8vw, 100px);
    line-height: 1;
    margin-bottom: 25px;
}

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

.hero-text {
    max-width: 520px;
    color: #ccc;
    font-size: 18px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.button,
.secondary-button {
    display: inline-block;
    padding: 14px 25px;
    font-weight: 700;
    font-size: 14px;
}

.button {
    background: var(--accent);
    color: #111;
}

.secondary-button {
    border: 1px solid #777;
}


/* SECTIONS */

.section {
    max-width: 1200px;
    margin: auto;
    padding: 110px 25px;
}

.section-heading {
    max-width: 650px;
    margin-bottom: 55px;
}

.section-heading h2,
.about h2,
.contact h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;
    margin-bottom: 18px;
}

.section-heading > p:last-child,
.about-content > p,
.contact-content > p {
    color: var(--muted);
}


/* SERVICES */

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

.service-card {
    padding: 35px;
    border: 1px solid var(--border);
    background: var(--card);
}

.service-card.featured {
    border-color: var(--accent);
}

.service-number {
    color: var(--accent);
    margin-bottom: 35px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted);
    margin-bottom: 25px;
}

.service-card strong {
    color: var(--accent);
    font-size: 20px;
}


/* ABOUT */

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    min-height: 550px;

    background:
        linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.3)),
        url("https://images.unsplash.com/photo-1622286342621-4bd786c2447c?auto=format&fit=crop&w=1000&q=85")
        center/cover;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content .button {
    margin-top: 15px;
}


/* GALLERY */

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

.gallery-item {
    height: 420px;
    background-size: cover;
    background-position: center;
}

.gallery-one {
    background-image:
        url("https://images.unsplash.com/photo-1599351431202-1e0f0137899a?auto=format&fit=crop&w=900&q=85");
}

.gallery-two {
    background-image:
        url("https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=900&q=85");
}

.gallery-three {
    background-image:
        url("https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=900&q=85");
}


/* TESTIMONIAL */

.testimonial {
    text-align: center;
    max-width: 850px;
}

.quote {
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 4vw, 45px);
    line-height: 1.3;
    margin-bottom: 20px;
}

.testimonial p {
    color: var(--accent);
}


/* CONTACT */

.contact {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    border-top: 1px solid var(--border);
}

.contact-content .button {
    margin-top: 25px;
}

.opening-hours {
    border-left: 1px solid var(--border);
    padding-left: 50px;
}

.opening-hours h3 {
    margin-bottom: 25px;
}

.opening-hours p {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: #bbb;
}

.opening-hours span {
    color: white;
}


/* FOOTER */

footer {
    text-align: center;
    padding: 50px 25px;
    border-top: 1px solid var(--border);
}

.footer-logo {
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

footer p {
    color: #777;
}

.copyright {
    margin-top: 25px;
    font-size: 12px;
}


/* MOBILE */

@media (max-width: 800px) {

    .nav-links,
    .nav-button {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        padding: 25px;

        flex-direction: column;
        background: #111;
        border-top: 1px solid var(--border);
    }

    .hero {
        padding-left: 25px;
        padding-right: 25px;
    }

    .service-grid,
    .gallery-grid,
    .about,
    .contact {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 400px;
    }

    .opening-hours {
        border-left: 0;
        border-top: 1px solid var(--border);
        padding: 40px 0 0;
    }

    .gallery-item {
        height: 350px;
    }
}
