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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    background: #111;
    color: #f5f1e8;
    line-height: 1.6;
}

a {
    transition: 0.3s ease;
}

/* NAVIGATION */

.navbar {
    width: 100%;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    padding: 20px 7%;

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

    background: rgba(17, 17, 17, 0.95);

    border-bottom: 1px solid #292929;
}

.logo {
    color: #fff;

    text-decoration: none;

    font-size: 23px;
    font-weight: 900;

    letter-spacing: 1px;
}

.logo span {
    color: #c99a4a;
}

.navbar nav {
    display: flex;
    gap: 28px;
}

.navbar nav a {
    color: #aaa;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;
}

.navbar nav a:hover {
    color: #c99a4a;
}


/* HERO */

.hero {
    width: 100%;
    min-height: auto;

    padding: 115px 6% 65px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(17, 17, 17, 0.98),
            rgba(17, 17, 17, 0.75),
            rgba(17, 17, 17, 0.95)
        );
}

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

.small-title {
    color: #c99a4a;

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

    letter-spacing: 4px;

    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(55px, 9vw, 100px);

    line-height: 0.95;

    letter-spacing: -4px;

    margin-bottom: 30px;
}

.hero h1 span {
    color: #c99a4a;
}

.hero-content > p:not(.small-title) {
    max-width: 550px;

    color: #aaa;

    font-size: 17px;

    margin-bottom: 35px;
}


/* BUTTONS */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.btn {
    display: inline-block;

    padding: 14px 24px;

    border-radius: 4px;

    text-decoration: none;

    font-weight: 700;
}

.primary {
    background: #c99a4a;
    color: #111;
}

.primary:hover {
    background: #e0b66d;

    transform: translateY(-3px);
}

.secondary {
    border: 1px solid #555;

    color: white;
}

.secondary:hover {
    border-color: #c99a4a;

    color: #c99a4a;
}


/* GENERAL SECTIONS */

.section {
    width: 100%;
    max-width: 1200px;

    margin: auto;

    padding: 100px 7%;
}

.heading {
    margin-bottom: 55px;
}

.heading p {
    color: #c99a4a;

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

    letter-spacing: 3px;

    margin-bottom: 12px;
}

.heading h2 {
    font-size: clamp(40px, 7vw, 70px);

    line-height: 1;
}


/* SERVICES */

.services {
    background: #151515;
}

.services-grid {
    display: grid;

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

    gap: 18px;
}

.service-card {
    min-width: 0;

    padding: 35px;

    background: #1c1c1c;

    border: 1px solid #2c2c2c;

    border-radius: 8px;

    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: #c99a4a;
}

.service-card span {
    color: #c99a4a;

    font-size: 12px;
    font-weight: 800;
}

.service-card h3 {
    font-size: 27px;

    margin: 45px 0 12px;
}

.service-card p {
    color: #999;

    margin-bottom: 25px;
}

.service-card strong {
    color: #e0b66d;

    font-size: 20px;
}


/* ABOUT */

.about {
    background: #111;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.about .heading {
    margin-bottom: 0;
}

.about-text {
    color: #999;

    font-size: 17px;
}

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


/* CONTACT */

.contact {
    width: 100%;

    padding: 110px 7%;

    background: #c99a4a;

    color: #111;
}

.contact > div {
    max-width: 850px;

    margin: auto;
}

.contact > div > p:first-child {
    font-size: 12px;

    font-weight: 900;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.contact h2 {
    font-size: clamp(55px, 9vw, 100px);

    line-height: 0.95;

    letter-spacing: -3px;

    margin-bottom: 25px;
}

.contact > div > p:not(:first-child) {
    max-width: 500px;

    font-size: 17px;

    margin-bottom: 30px;
}

.whatsapp {
    display: inline-block;

    padding: 15px 25px;

    background: #111;

    color: white;

    text-decoration: none;

    border-radius: 4px;

    font-weight: 800;
}

.whatsapp:hover {
    background: #222;

    transform: translateY(-3px);
}


/* FOOTER */

footer {
    width: 100%;

    padding: 30px 7%;

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

    background: #080808;

    color: #777;
}

footer strong {
    color: white;

    font-size: 20px;
}

footer span {
    color: #c99a4a;
}

footer p {
    font-size: 12px;
}


/* TABLET */

@media (max-width: 800px) {

    .hero {
        padding-top: 130px;
    }

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

    .about {
        grid-template-columns: 1fr;

        gap: 20px;
    }
}


/* PHONE */

@media (max-width: 600px) {

    .navbar {
        padding: 15px 5%;
    }

    .logo {
        font-size: 18px;
    }

    .navbar nav {
        gap: 8px;
    }

    .navbar nav a {
        font-size: 9px;
    }

    .hero {
        padding: 120px 6% 70px;
    }

    .hero h1 {
        font-size: 52px;

        letter-spacing: -2px;
    }

    .hero-content > p:not(.small-title) {
        font-size: 15px;
    }

    .section {
        padding: 75px 6%;
    }

    .heading h2 {
        font-size: 42px;
    }

    .service-card {
        padding: 28px;
    }

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

    .contact {
        padding: 80px 6%;
    }

    .contact h2 {
        font-size: 55px;
    }

    footer {
        padding: 25px 6%;

        flex-direction: column;

        gap: 10px;

        text-align: center;
    }
}