:root {
    --navy: #191970;
    --gold: #FFD700;
    --light-gold: #FFF1B4;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Base Styles */
.development-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background: var(--navy);
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    opacity: 0.8;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Buttons */
.primary-btn, .secondary-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    margin: 0.5rem;
    transition: var(--transition);
    background: var(--gold);
    color: var(--navy);
}

.secondary-btn {
    background: var(--gold);
    border: none;
    color: var(--navy);
}

.primary-btn:hover, .secondary-btn:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
}

/* Overview Section */
.development-overview {
    padding: 2rem 0;
    background: var(--white);
}

.overview-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.overview-content h2 {
    color: var(--navy);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.key-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 400px));
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

/* Property Sections */
.property-type {
    padding: 0.5rem 0;
}

.property-type h2 {
    color: var(--navy);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.property-details {
    max-width: 1200px;
    margin: 0 auto;
}

.specs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.specs span {
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border-radius: 4px;
    font-weight: 600;
}

.price {
    color: var(--navy);
    border: 2px solid var(--gold);
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* Contact Image - Now standalone */
.contact-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: contain;
    margin-bottom: 2rem;
    display: block;  /* Make it a block element */
}

/* Contact Section - Separate blue box */
.contact-section {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

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

.contact-details {
    margin-top: 2rem;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-btn {
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.contact-btn:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .specs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .key-features {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .development-container {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .key-features {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature, .property-details, .contact-content {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Banner styles */
.banner {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 20px;
    text-align: center;
    width: 100%;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
}

.banner h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.banner p {
    font-size: 1.2em;
    opacity: 0.8;
}

/* Quick Links styles */
.quick-links {
    background-color: #f5f5f5;
    padding: 40px 20px;
    text-align: center;
}

.quick-links h3 {
    margin-bottom: 20px;
}

.quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin: 10px 0;
}

.quick-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #007bff;
}

/* Logo size adjustment */
.logo img {
    width: 150px; /* Reduced from 200px */
    height: auto;
    display: block;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-left, .footer-right {
    padding: 2rem;
    background-color: #444;
    border-radius: 4px;
}

.footer-right {
    text-align: left;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.footer-right ul li {
    margin-bottom: 0.5rem;
}

.footer-right ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-right ul li a:hover {
    color: #ddd;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Remove buttons from hero section */
.hero-cta {
    display: none;
}