
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,500;6..96,600;6..96,700&display=swap');



/* =========================================
   RESET
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #090909;
    color: #ffffff;
}

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


/* =========================================
   VARIABLES
========================================= */

:root {
    --black: #090909;
    --dark: #111111;
    --gold: #e6c229;
    --gold-light: #f4d84a;
    --white: #ffffff;
    --gray: #a6a6a6;
}


/* =========================================
   NAVBAR
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    padding: 0 6%;

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

    z-index: 1000;

    background: #090909;
}

/* LOGO */

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}

.logo-name {
    font-family: 'Bodoni Moda', serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    white-space: nowrap;
}


/* NAV LINKS */

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    position: relative;

    font-size: 13px;
    letter-spacing: 1px;
    color: #dddddd;

    transition: 0.3s;
}

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

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}


/* WHATSAPP BUTTON */

.nav-whatsapp {
    padding: 12px 20px;

    border: 1px solid var(--gold);

    color: var(--gold);

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;

    transition: 0.3s;
}

.nav-whatsapp:hover {
    background: var(--gold);
    color: #000000;
}


/* MOBILE MENU BUTTON */

.menu-btn {
    display: none;

    width: 44px;
    height: 44px;

    background: none;
    border: none;

    position: relative;
    cursor: pointer;

    padding: 0;
}

/* Hamburger lines */
.menu-btn::before,
.menu-btn::after {
    content: "";
    position: absolute;

    right: 0;

    width: 34px;
    height: 2px;

    background: #ffffff;

    transition: all 0.35s ease;
}

.menu-btn::before {
    top: 14px;

    box-shadow: 0 9px 0 #ffffff;
}

.menu-btn::after {
    top: 32px;
}

/* Subtle premium interaction */
.menu-btn.active::before,
.menu-btn.active::after {
    background: var(--gold);
}

.menu-btn.active::before {
    box-shadow: none;
}
/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 130px 8% 80px;

    background-image: url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
}


/* DARK IMAGE OVERLAY */

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

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.72) 45%,
            rgba(0, 0, 0, 0.35) 100%
        );
}


/* HERO CONTENT */

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 720px;
}

.hero-eyebrow {
    margin-bottom: 30px;

    color: var(--gold);

    font-size: 18px;
    font-weight: bold;

    letter-spacing: 4px;
}

.hero h1 {
    font-size: clamp(50px, 7vw, 95px);

    line-height: 0.95;

    font-weight: 900;

    letter-spacing: -3px;
}

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

.hero-description {
    max-width: 520px;

    margin-top: 28px;

    color: #cccccc;

    font-size: 17px;
    line-height: 1.7;
}


/* HERO BUTTONS */

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

    margin-top: 35px;
}

.btn {
    display: inline-flex;

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

    min-height: 52px;

    padding: 0 25px;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 1px;

    transition: 0.3s;
}

.btn-primary {
    background: var(--gold);
    color: #000000;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}


/* HERO INFO */

.hero-info {
    display: flex;
    align-items: center;

    margin-top: 60px;

    gap: 25px;
}

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

.hero-info strong {
    font-size: 17px;
}

.hero-info span {
    margin-top: 5px;

    color: #999999;

    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-divider {
    width: 1px;
    height: 35px;

    background: #555555;
}


/* SCROLL INDICATOR */

.hero-scroll {
    position: absolute;

    right: 6%;
    bottom: 40px;

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

    transform: rotate(90deg);

    font-size: 9px;
    letter-spacing: 3px;

    color: #aaaaaa;
}

.hero-scroll div {
    width: 40px;
    height: 1px;

    background: var(--gold);
}


/* =========================================
   SERVICES
========================================= */

.services-section {
    padding: 120px 8%;

    background: var(--black);
}

.section-heading {
    max-width: 650px;

    margin-bottom: 65px;
}

.section-eyebrow {
    margin-bottom: 15px;

    color: var(--gold);

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 4px;
}

.section-heading h2 {
    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.15;
}

.section-heading h2 span {
    color: var(--gold);
}

.section-heading > p:last-child {
    margin-top: 20px;

    color: var(--gray);

    line-height: 1.7;
}

#services {
    scroll-margin-top: 60px;
}

/* SERVICES GRID */

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: #292929;
}

.service-card {
    position: relative;

    min-height: 230px;

    padding: 35px;

    background: #0d0d0d;

    transition: 0.3s;

    cursor: pointer;
}

.service-card:hover {
    background: #151515;
}

.service-number {
    color: var(--gold);

    font-size: 12px;
    letter-spacing: 2px;
}

.service-card h3 {
    margin-top: 45px;

    font-size: 22px;
}

.service-card p {
    margin-top: 12px;

    color: #888888;

    font-size: 14px;
    line-height: 1.6;
}

.featured-service {
    background: #131313;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .nav-whatsapp {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        padding-left: 7%;
        padding-right: 7%;

        background-position: 60% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.80),
                rgba(0, 0, 0, 0.80)
            );
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    .logo-name {
        font-size: 27px;
    }

    .logo-tagline {
        font-size: 7px;
        letter-spacing: 4px;
    }

    .hero {
        min-height: 100svh;

        padding: 120px 6% 60px;

        align-items: center;

        background-position: 100% center;
    }

    .hero h1 {
    font-size: clamp(45px, 13vw, 70px);
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 0.95;
}

    .hero-eyebrow {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero-info {
        margin-top: 20px;
    }

    .hero-scroll {
        display: none;
    }

    .services-section {
        padding: 80px 6%;
    }

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

    .service-card {
        min-height: 200px;
    }

    .service-card h3 {
        margin-top: 35px;
    }
}

/* MOBILE MENU */

.menu-btn {
    display: block;
    z-index: 1001;
}

/* Closed state */
.menu-btn::before,
.menu-btn::after {
    transition: transform 0.35s ease, top 0.35s ease, box-shadow 0.35s ease;
}

/* Open state → X */
.menu-btn.active::before {
    top: 21px;
    transform: rotate(45deg);
    box-shadow: none;
}

.menu-btn.active::after {
    top: 21px;
    transform: rotate(-45deg);
}

/* Mobile navigation panel */
.nav-links {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background: #000000;

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

    gap: 32px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-15px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s ease;

    z-index: 1000;
}

/* Open */
.nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Menu links */
.nav-links a {
    position: relative;

    font-size: 24px;
    font-weight: 500;

    color: #ffffff;

    text-decoration: none;
}

/* Same premium underline idea */
.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 100%;
    height: 1px;

    background: var(--gold);

    transform: scaleX(0);
    transform-origin: right;

    transition: transform 0.35s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 80px;
}
