body {
    margin: 0;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f8f8f8;
    color: #222;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
}

.intro-statement {
    font-family: 'Cormorant Garamond', serif;
}

/* Update your font-family to be safer */
.hero-content h1,
.intro-statement,
.property-content h2,
.contact h2 {
    font-family: "Cormorant Garamond", serif !important;
}

p,
li,
a,
.cta {
    font-family: 'Manrope', Helvetica, Arial, sans-serif;
    font-weight: 300;
    /* Light */
}

.property-card .cta {
    background: #fff;
    color: #1a3a3a;
    border: 2px solid #0f7490;
    /* Ocean-blue accent */
    transition: background 0.2s, color 0.2s;
}

.property-card .cta:hover {
    background: #0f7490;
    color: #fff;
}

.hero {
    position: relative;
    width: 100%;
    height: 120vh;
    min-height: 500px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    /* 👈 ADD THIS */
    align-items: center;
    /* horizontal center */
    justify-content: center;
    /* vertical center */

    max-width: none;
    margin: 0;
    padding: 0;
}

.hero-top-gradient {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 150px;

    z-index: 1;

    pointer-events: none;

    opacity: 0.45;

    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.467) 35%,
            rgba(0, 0, 0, 0.186) 70%,
            rgba(0, 0, 0, 0) 100%);

    transition: opacity 0.15s linear;
}

.hero-img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1.1);
    /* starting zoom */
    transition: none;

    will-change: transform;
    /* performance boost */
    filter: brightness(0.6);
}

.hero-navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    padding: 24px 48px;

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

    z-index: 1000;

    box-sizing: border-box;
}

.hero-logo {
    height: 72px;
    width: auto;

    object-fit: contain;

    opacity: 0;
    transform: translateY(-8px);

    animation: fadeLogo 1s ease forwards;

    filter: brightness(1.05);
}

.floating-reserve {
    text-decoration: none;

    background: rgba(56, 53, 53, 0.068);

    border: 1px solid rgba(255, 255, 255, 0.18);

    color: white;

    padding: 12px 22px;

    border-radius: 999px;

    backdrop-filter: blur(12px);

    font-size: 0.92rem;
    font-weight: 500;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.floating-reserve:hover {
    transform: translateY(-2px);

    background: rgba(255, 255, 255, 0.18);

    border-color: rgba(255, 255, 255, 0.32);
}

@keyframes fadeLogo {

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Cormorant Garamond', serif;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta {
    background: #fff;
    color: #1a3a3a;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background 0.2s, color 0.2s;
}

.cta.secondary {
    background: #1a3a3a;
    color: #fff;
}

.cta:hover {
    background: #e0f7fa;
    color: #1a3a3a;
}

section {
    width: 100%;
    box-sizing: border-box;
}

/* Intro Section */
.intro {
    padding: 140px 40px;
}

.intro-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 140px;
    align-items: center;
    width: 100%;
}

.intro-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.intro-divider {
    width: 3px;
    /* Increased from 1px to 3px so it's actually visible */
    height: 120px;
    background: #ed0909;
    /* Simplified hex code */
    margin-right: 20px;
    flex-shrink: 0;
    /* Prevents the line from squishing to 0 width */
}

.intro-heading-group {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.intro-statement {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    font-weight: 500;
    color: #1a3a3a;
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
}

.intro-right {
    display: flex;
    flex-direction: column;
}

.intro-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.intro-right p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .intro {
        padding: 60px 24px;
    }

    .intro-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-statement {
        font-size: 1.8rem;
    }
}

/* Properties Showcase Section */
.properties-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.property-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.property-card.house {
    direction: rtl;
}

.property-card.house>* {
    direction: ltr;
}

.property-image {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.property-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.property-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1a3a3a;
    font-family: 'Cormorant Garamond', serif;
}

.property-content h3 {
    font-size: 1.3rem;
    color: rgb(15, 116, 144);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.property-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.highlights li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0f7490;
    font-weight: bold;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1a3a3a 0%, #0f7490 100%);
    color: #fff;
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

.contact h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
}

.contact p {
    color: #e0f7fa;
    margin-bottom: 2rem;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-details li {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.contact-details strong {
    color: #e0f7fa;
    display: block;
    margin-bottom: 0.5rem;
}

.contact .cta-group {
    margin-top: 2rem;
}

.contact .cta {
    background: #fff;
    color: #1a3a3a;
}

.contact .cta:hover {
    background: #e0f7fa;
}

/* Closing Section */
.closing {
    text-align: center;
    padding: 60px 20px;
    color: #1a3a3a;
}

.closing p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .hero-navbar {
        padding: 16px 20px;
    }

    .hero-logo {
        height: 44px;
    }

    .floating-reserve {
        padding: 8px 14px;
        font-size: 0.78rem;
    }

    .hero-content {
        padding: 0 24px;
        box-sizing: border-box;
    }

    .property-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .property-card.house {
        direction: ltr;
    }

    .property-content h2 {
        font-size: 1.5rem;
    }

    .property-content h3 {
        font-size: 1.1rem;
    }

    .properties-showcase {
        gap: 40px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .contact-details {
        gap: 1rem;
        flex-direction: column;
    }

    .contact {
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);
        margin: 0 20px;
        padding: 40px 24px;
        box-sizing: border-box;
    }

    .contact-details li {
        width: 100%;
        box-sizing: border-box;
    }

    .closing {
        padding: 60px 24px;
    }
}

@media (max-width: 600px) {
    .hero-navbar {
        padding: 14px 16px;
    }

    .hero-logo {
        height: 36px;
    }

    .floating-reserve {
        padding: 7px 12px;
        font-size: 0.72rem;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .intro {
        padding: 60px 20px;
    }

    .properties-showcase {
        padding: 0 16px;
    }

    .contact {
        width: calc(100% - 32px);
        max-width: calc(100% - 32px);
        margin: 0 16px;
        padding: 36px 20px;
    }

    .closing {
        padding: 48px 20px;
    }

    .cta {
        padding: 0.6rem 1.2rem;
    }
}

/* Reveal sections on scroll */
.reveal-section {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-section.animate {
    opacity: 0;
    transform: translateY(40px);
}

@keyframes fadeLogo {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}