* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter',sans-serif;
    background: #050505;
    color: white;
    overflow-x: hidden;
}

/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    height: 110px;
    background: rgba(0,0,0,.45);
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(14px);
}

.logo img {
    height: 200px;
    width: auto;
    display: block;
}

nav {
    display: flex;
    gap: 40px;
}

    nav a {
        color: white;
        text-decoration: none;
        font-size: 15px;
        transition: .2s;
    }

        nav a:hover {
            opacity: .6;
        }

.nav-btn {
    padding: 14px 26px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    color: white;
    text-decoration: none;
    transition: .2s;
}

    .nav-btn:hover {
        background: white;
        color: black;
    }

/* HERO */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 7%;
    background: linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.85)), url('../img/hero.jpg') center/cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-tag {
    color: #999;
    letter-spacing: 4px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: 92px;
    line-height: .9;
    margin-bottom: 28px;
}

.hero-text {
    color: #cfcfcf;
    font-size: 18px;
    line-height: 1.8;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: .2s;
}

.btn-primary {
    background: white;
    color: black;
}

    .btn-primary:hover {
        transform: translateY(-2px);
    }

.btn-secondary {
    border: 1px solid rgba(255,255,255,.15);
    color: white;
}

    .btn-secondary:hover {
        background: rgba(255,255,255,.05);
    }

/* SECTIONS */

section {
    padding: 140px 7%;
}

.section-header {
    margin-bottom: 70px;
}

.section-tag {
    color: #777;
    letter-spacing: 4px;
    margin-bottom: 18px;
    font-size: 13px;
}

.section-header h2,
.about h2,
.booking h2 {
    font-size: 58px;
}

/* ABOUT */

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

    .about p {
        color: #aaa;
        line-height: 1.9;
        margin-top: 24px;
    }

.about-right img {
    width: 100%;
    border-radius: 28px;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat strong {
    display: block;
    font-size: 38px;
    margin-bottom: 8px;
}

.stat span {
    color: #777;
}

/* SERVICES */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}

.service-card {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 28px;
    padding: 40px;
    transition: .25s;
}

    .service-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255,255,255,.15);
    }

    .service-card span {
        color: #666;
        font-size: 14px;
    }

    .service-card h3 {
        margin: 20px 0;
        font-size: 30px;
    }

    .service-card p {
        color: #888;
        line-height: 1.8;
    }

/* PORTFOLIO */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.portfolio-item img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
    transition: .25s;
}

    .portfolio-item img:hover {
        transform: scale(1.02);
    }

/* BOOKING */

.booking {
    display: flex;
    justify-content: center;
}

.booking-box {
    width: 100%;
    max-width: 850px;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 34px;
    padding: 70px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
}

input,
select {
    background: #050505;
    border: 1px solid rgba(255,255,255,.08);
    color: white;
    padding: 20px;
    border-radius: 18px;
    outline: none;
}

button {
    border: none;
    background: white;
    color: black;
    padding: 20px;
    border-radius: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

    button:hover {
        transform: translateY(-2px);
    }

/* FOOTER */

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 7%;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
    height: 200px;
}

.footer-contact {
    color: #777;
}

/* RESPONSIVE */

@media(max-width:1100px) {

    nav {
        display: none;
    }

    .hero h1 {
        font-size: 62px;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-direction: column;
    }

    .footer {
        flex-direction: column;
        gap: 30px;
    }
}
