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

.logo {
    height: 60px;
    width: auto;
}

body {
    font-family: "Segoe UI", sans-serif;
    background: #0f0f0f;
    color: #fff;
    line-height: 1.6;
    padding-top: 90px;
}

html {
    scroll-behavior: smooth;
}

/* NAVBAR */
nav {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);

    z-index: 1000;
}

nav h1 {
    font-size: 18px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #c89b3c;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* HERO */
.hero {
    min-height: 100vh;
    background-image:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)),
        url('images/bg.png');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    gap: 20px;
}

.hero h2 {
    font-size: 50px;
    letter-spacing: 1px;
    max-width: 900px;
}

.hero p {
    margin-top: 0;
    font-size: 20px;
    color: #ddd;
    max-width: 800px;
}

.btn {
    margin-top: 25px;
    padding: 14px 35px;
    background: #c89b3c;
    color: #000;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #e0b14a;
    transform: translateY(-2px);
}

    .visually-hidden {
        position: absolute !important;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

.page h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 30px;
}

.page .section {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* SECTIONS */
.section {
    padding: 60px 20px;
    scroll-margin-top: 100px;
    text-align: center;
}

.page h1 {
    margin-bottom: 20px;
}

.section h2 {
    margin: 40px 0 12px;
    font-size: 30px;
}

.section p {
    margin: 0 auto 20px;
    max-width: 760px;
}

/* SERVICES */
.services {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: #1a1a1a;
    padding: 35px;
    width: 250px;
    transition: 0.3s;
    border: 1px solid #222;
}

.card:hover {
    background: #222;
    transform: translateY(-8px);
    border-color: #c89b3c;
}

/* ABOUT */
.about {
    max-width: 800px;
    margin: auto;
}

/* CONTACT */
.contact a:not(.btn) {
    color: #c89b3c;
    text-decoration: none;
}

.contact a:not(.btn):hover {
    text-decoration: underline;
}

.contact p {
    margin: 10px 0;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px auto 0;
    max-width: 980px;
}

.team-card {
    background: #121212;
    border: 1px solid #222;
    border-radius: 20px;
    width: 260px;
    padding: 30px 20px;
    text-align: center;
}

.avatar {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #c89b3c;
    margin-bottom: 20px;
}

.team-card h2 {
    margin-bottom: 12px;
}

.team-card p {
    color: #ddd;
    line-height: 1.5;
}

/* FOOTER */
footer {
    background: #000;
    padding: 40px;
    text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    nav a {
        margin-left: 15px;
        font-size: 14px;
    }
    .hero {
        min-height: 90vh;
        background-position: center 25%;
        padding: 120px 20px 60px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.15;
    }

    .hero p {
        font-size: 18px;
    }
}
