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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    overflow-x: hidden;
}

/* -----------------------------------
   LUXURY HEADER (matches hero aesthetic)
----------------------------------- */

header {
    background: #0d0d0d;
    color: #f4f2ed;
    padding: 35px 0 25px;
    text-align: center;
    border-bottom: 1px solid rgba(215, 176, 105, 0.25); /* subtle gold line */
    font-family: "Playfair Display", serif;
}

header .container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Name */
header h1 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* Luxury profile image */
.header__img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(215, 176, 105, 0.55); /* elegant gold ring */
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    margin: 10px 0;
}

/* Mobile adjustments */
@media screen and (max-width: 900px) {
    .header__img {
        width: 32vw;
        height: 32vw;
    }
}

/* Subtitle */
.subtitle {
    font-size: 1.1rem;
    font-family: "Inter", sans-serif;
    color: #e8e6e3;
    margin-top: 8px;
    opacity: 0.85;
}


/* -----------------------------------
   LUXURY NAVBAR
----------------------------------- */

.navbar {
    background: #0a0a0a; /* rich black */
    border-bottom: 1px solid rgba(215, 176, 105, 0.15); /* soft gold line */
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(0,0,0,0.35);
}

/* Navigation layout */
.navbar nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    padding: 1.1rem 0;
    margin: 0;
}

/* Link styling */
.navbar nav ul li a {
    text-decoration: none;
    color: #f5f4f0;
    font-size: 1.05rem;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    letter-spacing: 0.4px;
    transition: color 0.3s ease, opacity 0.3s ease;
}

/* Hover (warm gold) */
.navbar nav ul li a:hover {
    color: #d5b16b;
}

/* Social icons container */
.social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Icon styling */
.social-icons svg {
    fill: #f5f4f0;
    transition: 0.3s ease;
}

.social-icons svg:hover {
    fill: #d5b16b; /* gold hover */
}

/* -----------------------------------
   MOBILE NAVIGATION
----------------------------------- */

@media (max-width: 600px) {
    .navbar nav ul {
        flex-wrap: wrap;
        gap: 1.2rem;
        padding: 0.9rem 0;
    }

    .navbar nav ul li a {
        font-size: 1rem;
    }

    .social-icons {
        margin-top: 0.5rem;
    }
}



/* Luxury Hero */
.luxury-hero {
    position: relative;
    background: url('https://unicahomes.ca/wp-content/uploads/2023/02/modern-house-toronto.webp')
        no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    text-align: center;
    color: #fff;
    font-family: "Playfair Display", serif;
}

/* Subtle dark luxury overlay */
.luxury-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(1.5px);
}

/* Content */
.hero-content {
    position: relative;
    max-width: 800px;
    padding: 45px 40px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 215, 140, 0.25); /* refined gold border */
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Luxury heading */
.hero-content h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #f9f7f3;
    margin-bottom: 18px;
}

/* Elegant body text */
.hero-content p {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    line-height: 1.7;
    color: #e8e6e3;
    margin-bottom: 28px;
}

/* Luxury button */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f1d39b, #d5a95b);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.4px;
}

.btn:hover {
    background: linear-gradient(135deg, #f6e3bb, #e0b974);
    transform: translateY(-3px);
}

/* Fade animation */
.fade-in {
    animation: fadeInUp 1.1s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    0% { transform: translateY(25px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* --------------------------------------------
   📱 MOBILE OPTIMIZATION (luxury responsive)
-------------------------------------------- */
@media (max-width: 768px) {
    .luxury-hero {
        height: 70vh;
        padding: 0 15px;
    }

    .hero-content {
        padding: 30px 25px;
    }

    .hero-content h2 {
        font-size: 2.4rem;
    }

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

    .btn {
        padding: 12px 26px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .luxury-hero {
        height: 60vh;
    }

    .hero-content h2 {
        font-size: 1.9rem;
    }

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

    .btn {
        width: 100%;
        padding: 12px 0;
    }
}

/* =====================================================
   MLS SEARCH BAR (LUXURY STYLE)
===================================================== */

.mls-search {
    width: 90%;
    max-width: 1100px;
    margin: 90px auto;
    text-align: center;
    font-family: "Inter", sans-serif;
    color: #0d0d0d;
}

/* Heading */
.mls-search h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    color: #0d0d0d;
    margin-bottom: 35px;
    letter-spacing: 0.6px;
}

/* Form container */
.mls-form {
    display: flex;
    gap: 1.2rem;
    padding: 30px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(215,176,105,0.25);
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
    backdrop-filter: blur(3px);
}

/* Inputs & selects */
.mls-form input,
.mls-form select {
    flex: 1;
    padding: 14px 16px;
    font-size: 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: #0d0d0d;
    outline: none;
}

.mls-form input::placeholder {
    color: #3B3B3B;
}

/* Dropdown arrow color */
.mls-form select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #d5b16b 50%),
        linear-gradient(135deg, #d5b16b 50%, transparent 50%);
    background-position:
        calc(100% - 20px) 50%,
        calc(100% - 15px) 50%;
    background-size: 5px 5px;
    background-repeat: no-repeat;
}

/* Button */
.mls-form button {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #f1d39b, #d5a95b);
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mls-form button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #f6e3bb, #e0b974);
}

/* -----------------------------------
   MOBILE RESPONSIVE
----------------------------------- */

@media (max-width: 900px) {
    .mls-form {
        flex-direction: column;
    }

    .mls-form button {
        width: 100%;
    }
}
.mls-note {
    margin-top: 14px;
    font-size: 0.9rem;
    color: rgba(232,230,227,0.7);
    font-style: italic;
}

/* -----------------------------------
   LUXURY ABOUT SECTION
----------------------------------- */

.about-section {
    width: 90%;
    max-width: 1100px;
    margin: 80px auto;
    text-align: center;
    color: #e8e6e3;
    font-family: "Inter", sans-serif;
}

/* Section Title */
.about-section h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    color: #f9f7f3;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

/* Layout: image + text */
.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    background: #0a0a0a;
    border: 1px solid rgba(215,176,105,0.25); /* subtle gold edge */
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
    backdrop-filter: blur(3px);
}

/* Headshot container */
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Luxury headshot */
.about-headshot {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(215,176,105,0.55); /* gold ring */
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

/* Text side */
.about-text {
    flex: 2;
    text-align: left;
    color: #e8e6e3;
    font-size: 1.15rem;
    line-height: 1.75;
    max-width: 650px;
}

/* Paragraph spacing */
.about-text p {
    margin-bottom: 1.3rem;
}

/* Gold bolds */
.about-text strong {
    color: #d5b16b;
    font-weight: 600;
}


/* -----------------------------------
   MOBILE OPTIMIZATION
----------------------------------- */

@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        padding: 35px 25px;
        gap: 2rem;
    }

    .about-headshot {
        width: 55vw;
        height: 55vw;
    }

    .about-text {
        text-align: center;
    }
}

@media (max-width: 500px) {
    .about-section h2 {
        font-size: 2.2rem;
    }

    .about-headshot {
        width: 70vw;
        height: 70vw;
    }

    .about-content {
        padding: 28px 20px;
    }
}


/* =====================================================
   WHY BUYERS & SELLERS WORK WITH JENIFER
   Luxury • Editorial • No Cards
===================================================== */

.why-jenifer-minimal {
    width: 90%;
    max-width: 1100px;
    margin: 90px auto;
    font-family: "Inter", sans-serif;
    color: #e8e6e3;
}

/* Section heading */
.why-jenifer-minimal h2 {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    color: #0d0d0d;
    margin-bottom: 55px;
    letter-spacing: 0.6px;
}

/* Two-column editorial layout */
.why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4rem;
    row-gap: 3.2rem;
}

/* Individual reason item */
.why-item {
    position: relative;
    padding-bottom: 2.2rem;
}

/* Headline */
.why-item h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    color: #d5b16b;
    margin-bottom: 10px;
}

/* Body copy */
.why-item p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #0d0d0d;
    max-width: 500px;
}

/* -----------------------------------
   GOLD DIVIDER LINE
----------------------------------- */

.why-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(215,176,105,0),
        rgba(215,176,105,0.7),
        rgba(215,176,105,0)
    );
}

/* Remove divider from last row (desktop) */
@media (min-width: 901px) {
    .why-item:nth-last-child(-n + 2)::after {
        display: none;
    }
}

/* -----------------------------------
   RESPONSIVE DESIGN
----------------------------------- */

@media (max-width: 900px) {
    .why-list {
        grid-template-columns: 1fr;
        row-gap: 2.5rem;
    }

    .why-jenifer-minimal h2 {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .why-item p {
        max-width: 100%;
    }

    /* Center divider on mobile */
    .why-item::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Remove divider from last item */
    .why-item:last-child::after {
        display: none;
    }
}


/* Section Layout */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 60px auto;
    text-align: center;
    justify-content: center;
    align-items:center;
}

h2 {
    font-family: "Playfair Display", serif;
    color: #0a0a0a;
    margin-bottom: 20px;
    text-align: center;
    font-size:1.5rem;
}

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.service {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Contact */
.contact-info {
    list-style: none;
    text-align: center;
}

.contact-info li {
    margin: 10px 0;
}

.contact-info a {
    color: #1b2a49;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #ffcc70;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    background-color: #0a0a0a;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}
