* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    background: #000;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* GLASS OVERLAY */
.hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    padding: 60px 50px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    max-width: 750px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* TITLE */
.hero-title {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: #ffffff;
}

/* GOLD DIVIDER */
.divider {
    width: 80px;
    height: 2px;
    background: #d4af37;
    margin: 20px auto;
}

/* SUBTITLE */
.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #d4af37;
}

/* ROLE */
.hero-role {
    font-size: 18px;
    letter-spacing: 2px;
    color: #e0e0e0;
    text-transform: uppercase;
}

/* SECTIONS */
.section {
    padding: 80px 20px;
    text-align: center;
    background: #111;
}

.dark {
    background: #000;
}

/* BACKGROUNDS */
.realestate {
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
}

.marine {
    background: url('https://images.unsplash.com/photo-1540946485063-a40da27545f8') center/cover no-repeat;
}

.contact {
    background: url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21') center/cover no-repeat;
}

.overlay {
    background: rgba(0,0,0,0.6);
    padding: 80px 20px;
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
}

/* TEXT */
h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
}

/* LINKS */
.contact a {
    display: block;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

/* FOOTER */
footer {
    background: #000;
    padding: 30px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* MOBILE */
@media(max-width:768px){
    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    h2 {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }

    .hero-overlay {
        padding: 40px 25px;
    }
}