/* CSS Reset & Variables */
:root {
    --primary-gold: #C5A059;
    --primary-gold-dark: #A38241;
    --bg-dark: #121212;
    --bg-darker: #0A0A0A;
    --text-light: #F4F4F4;
    --text-dark: #333333;
    --text-grey: #666666;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #FAFAFA;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography & Utils */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

.text-light {
    color: var(--text-light);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--bg-dark);
}

.text-light .section-title {
    color: var(--primary-gold);
}

.section-desc {
    color: var(--text-grey);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.btn-gold {
    background: var(--primary-gold);
    color: #fff;
    padding: 12px 28px;
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 1px solid var(--primary-gold);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-gold:hover {
    background: transparent;
    color: var(--primary-gold);
}

.section {
    padding: 80px 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 2px solid var(--primary-gold);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

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

.nav-links li a {
    color: #fff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    color: var(--primary-gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    width: 100%;
    margin-top: 85px;
    /* Offset for fixed navbar */
    display: flex;
    flex-direction: column;
    /* Stack image and text */
    align-items: center;
    justify-content: center;
}

.hero-banner-container {
    width: 100%;
    line-height: 0;
    /* Remove extra space below image */
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    /* Removed absolute positioning */
}

/* Removed hero-overlay */

.hero-content {
    background-color: var(--bg-dark);
    /* Dark background for text section */
    color: #fff;
    width: 100%;
    max-width: 100%;
    /* Full width strip */
    padding: 60px 20px;
}

/* Override text colors for the new dark section */
.hero-content h1 {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Bio Section */
.bio-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bio-image {
    position: relative;
}

.bio-image img {
    width: 100%;
    border-radius: 4px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.frame-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-gold);
    z-index: -1;
}

.bio-text .subtitle {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.credentials {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.credential-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

/* Listings Section */
.listings-section {
    background-color: #fff;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.listing-card {
    background: #fff;
    border: 1px solid #eee;
    transition: var(--transition);
    border-radius: 4px;
    overflow: hidden;
}

.listing-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.listing-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.listing-card:hover .listing-image img {
    transform: scale(1.05);
}

.listing-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--bg-dark);
    color: var(--primary-gold);
    padding: 5px 12px;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.listing-tag.rent {
    background: var(--primary-gold);
    color: #fff;
}

.listing-details {
    padding: 20px;
}

.listing-price {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.listing-address {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.listing-area {
    font-size: 0.9rem;
    color: var(--text-grey);
    margin-bottom: 15px;
}

.listing-specs {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 15px;
    font-size: 0.9rem;
    color: var(--text-grey);
}

.listing-specs i {
    margin-right: 5px;
    color: var(--primary-gold);
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-dark);
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.contact-item p {
    color: #bbb;
}

.contact-form {
    background: var(--bg-darker);
    padding: 30px;
    border-radius: 4px;
    border: 1px solid #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background: var(--bg-dark);
    border: 1px solid #444;
    color: #fff;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-gold);
}

.block-btn {
    width: 100%;
    cursor: pointer;
}

/* Footer */
footer {
    background: #000;
    color: #666;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.disclaimer {
    font-size: 0.8rem;
    margin-top: 10px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .bio-container {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        height: calc(100vh - 80px);
        background: var(--bg-dark);
        flex-direction: column;
        width: 100%;
        padding-top: 50px;
        transition: 0.3s ease-in-out;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

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

    .bio-image {
        margin-bottom: 30px;
    }

    .frame-decoration {
        left: 10px;
        top: 10px;
    }
}