/* ============================================
   MICHAEL BOGGUS | GWL REAL ESTATE GROUP
   ============================================ */

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

:root {
    --orange: #F47C20;
    --orange-dark: #D96A10;
    --blue: #1A3A6B;
    --blue-mid: #2E5FA3;
    --white: #FFFFFF;
    --light: #F5F7FA;
    --gray: #6B7280;
    --dark: #1F2937;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- NAVBAR ---- */
.navbar {
    background: var(--blue);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-name {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.nav-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.3);
}

.logo-brokerage {
    opacity: 0.9;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-cta {
    background: var(--orange) !important;
    color: white !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: var(--orange-dark) !important;
}

/* ---- HERO ---- */
.hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 24px;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-team {
    color: var(--orange);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: white;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-tagline {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-photo {
    flex-shrink: 0;
}

.headshot {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--orange);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ---- BUTTONS ---- */
.btn-primary {
    background: var(--orange);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.5);
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
}

/* ---- ABOUT ---- */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about h2 {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 20px;
    text-align: center;
}

.about-text {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.8;
}

.areas {
    text-align: center;
}

.areas h3 {
    color: var(--blue);
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.area-tags span {
    background: var(--light);
    color: var(--blue);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(26,58,107,0.15);
}

/* ---- LISTINGS ---- */
.listings {
    padding: 80px 0;
    background: var(--light);
}

.listings h2 {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 8px;
    text-align: center;
}

.section-sub {
    color: var(--gray);
    text-align: center;
    margin-bottom: 48px;
    font-size: 1rem;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 32px;
}

.listing-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.listing-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.listing-image::after {
    content: '🏠';
}

.listing-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--orange);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.listing-info {
    padding: 20px;
}

.listing-info h3 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.listing-location {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.listing-details {
    color: var(--orange);
    font-size: 0.9rem;
    font-weight: 500;
}

.listing-footer {
    padding: 0 20px 20px;
}

.view-btn {
    display: block;
    text-align: center;
    background: var(--blue);
    color: white;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.listing-card:hover .view-btn {
    background: var(--orange);
}

.listings-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.95rem;
}

.listings-note a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

/* ---- SOLD LISTINGS ---- */
.sold {
    padding: 80px 0;
    background: var(--white);
}

.sold h2 {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 8px;
    text-align: center;
}

.sold-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.sold-card {
    background: var(--light);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 4px solid var(--orange);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sold-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.sold-badge {
    background: var(--orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 10px;
    border-radius: 6px;
    flex-shrink: 0;
}

.sold-info h3 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.sold-location {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 4px;
}

.sold-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue);
}

.sold-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.95rem;
}

.sold-note a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

/* ---- BOOKING ---- */
.booking {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
}

.booking-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.booking-text {
    flex: 1;
}

.booking-text h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 16px;
}

.booking-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 28px;
    max-width: 460px;
    line-height: 1.8;
}

.booking-perks {
    list-style: none;
    margin-bottom: 36px;
}

.booking-perks li {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.btn-book {
    background: var(--orange);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.1s;
}

.btn-book:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.booking-visual {
    flex-shrink: 0;
}

.calendar-icon {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    width: 220px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.cal-header {
    background: var(--orange);
    color: white;
    text-align: center;
    padding: 14px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.cal-body {
    padding: 28px 20px;
    text-align: center;
}

.cal-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.cal-body p {
    color: var(--blue);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

/* ---- CONTACT FORM ---- */
.contact {
    padding: 80px 0;
    background: white;
}

.contact h2 {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 8px;
    text-align: center;
}

.lead-form {
    max-width: 640px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
    outline: none;
    color: var(--dark);
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--orange);
}

.form-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 12px;
}

.form-success {
    text-align: center;
    padding: 48px 40px;
    background: #F0FDF4;
    border-radius: 12px;
    border: 2px solid #86EFAC;
    max-width: 640px;
    margin: 0 auto;
}

.form-success h3 {
    color: #166534;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-success p {
    color: #166534;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--blue);
    color: white;
    padding: 50px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.footer-logo {
    height: 44px;
    width: auto;
}

.footer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.footer-brand p,
.footer-contact p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-copy {
    text-align: center;
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

    .hero-tagline {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .headshot {
        width: 220px;
        height: 220px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .footer-content {
        flex-direction: column;
    }

    .booking-inner {
        flex-direction: column;
        text-align: center;
    }

    .booking-text p {
        margin: 0 auto 28px;
    }

    .booking-perks {
        display: inline-block;
        text-align: left;
    }
}
