* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f7f5;
    color: #111;
}


/* NAVBAR */

header {
    position: absolute;
    width: 100%;
    z-index: 100;
}

.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    color: white;
}

.logo {
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 14px;
}

.book-button {
    border: 1px solid #c8a96b;
    padding: 12px 20px;
}


/* HERO */

.hero {
    min-height: 100vh;

    background:
        linear-gradient(
            rgba(0,0,0,.3),
            rgba(0,0,0,.55)
        ),
        linear-gradient(
            135deg,
            #53616a,
            #182126
        );

    display: flex;
    align-items: center;

    padding: 100px 8% 40px;

    color: white;
}

.hero-content {
    max-width: 850px;
}

.hero-small {
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(55px, 8vw, 110px);
    line-height: .95;
    font-weight: 500;
    letter-spacing: -4px;
}

.hero-description {
    margin-top: 35px;
    max-width: 520px;
    font-size: 19px;
    line-height: 1.6;
    color: #ddd;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.hero-buttons a {
    text-decoration: none;
    padding: 16px 25px;
}

.primary-button {
    background: white;
    color: black;
}

.secondary-button {
    border: 1px solid white;
    color: white;
}


/* GENERAL */

.section {
    padding: 120px 8%;
}

.section-heading p,
.section-label {
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.section-heading h2 {
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 500;
    line-height: 1.05;
}


/* SERVICES */

.services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 70px;
}

.service-card {
    background: white;
    padding: 50px;
    min-height: 360px;
}

.service-number {
    color: #999;
    margin-bottom: 60px;
}

.service-card h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.service-card p {
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.service-card a {
    color: black;
    text-decoration: none;
}


/* PORTFOLIO */

.portfolio-section {
    padding: 120px 8%;
    background: #111;
    color: white;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.property-image {
    aspect-ratio: 4 / 3;
}

.placeholder {
    background: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777;
    font-size: 13px;
    letter-spacing: 2px;
}

.property-info {
    padding-top: 20px;
}

.property-info h3 {
    font-size: 22px;
    margin-bottom: 7px;
}

.property-info p {
    color: #aaa;
    margin-bottom: 10px;
}

.property-info span {
    font-size: 13px;
    color: #777;
}


/* TOUR */

.tour-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.tour-text {
    padding: 100px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-text h2 {
    font-size: clamp(40px, 5vw, 65px);
    font-weight: 500;
    line-height: 1.05;
}

.tour-text > p:not(.section-label) {
    margin-top: 30px;
    color: #666;
    line-height: 1.7;
    max-width: 500px;
}

.tour-text button {
    align-self: flex-start;
    margin-top: 35px;
    padding: 16px 25px;
    background: #111;
    color: white;
    border: none;
    cursor: pointer;
}

.tour-placeholder {
    background: #282e31;
    color: white;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 25px;
}

.tour-placeholder span {
    letter-spacing: 3px;
    font-size: 12px;
}

.play-circle {
    width: 80px;
    height: 80px;

    border: 1px solid white;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
}


/* BOOKING */

.booking-section {
    text-align: center;
    background: #e8e8e3;
    padding: 130px 20px;
}

.booking-section > p:first-child {
    letter-spacing: 4px;
    font-size: 12px;
}

.booking-section h2 {
    font-size: clamp(45px, 6vw, 80px);
    font-weight: 500;
    margin-top: 20px;
}

.booking-description {
    color: #666;
    margin: 25px auto;
}

.booking-button {
    margin-top: 20px;

    padding: 17px 30px;

    border: none;

    background: #111;
    color: white;

    font-size: 15px;

    cursor: pointer;
}


/* FOOTER */

footer {
    background: #111;
    color: white;
    padding: 70px 8%;
}

.footer-logo {
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: #c8a96b;
}
footer p {
    color: #777;
}


/* PHONE */

@media (max-width: 800px) {

    .nav-links a:not(.book-button) {
        display: none;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .property-grid {
        grid-template-columns: 1fr;
    }

    .tour-section {
        grid-template-columns: 1fr;
    }

    .tour-placeholder {
        min-height: 500px;
    }

}