/* Base Styles */
:root {
    --primary-color: #8B4513; /* SaddleBrown - warm brown for cozy theme */
    --secondary-color: #D2B48C; /* Tan - complementary to the brown */
    --accent-color: #CD853F; /* Peru - slightly lighter brown for accents */
    --text-color: #333333;
    --light-color: #F5F5DC; /* Beige - light background color */
    --white-color: #FFFFFF;
    --shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 3rem 0;
    text-align: center;
    background-image: linear-gradient(rgba(139, 69, 19, 0.8), rgba(139, 69, 19, 0.8)), url('../images/header-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.header-content {
    position: relative;
    z-index: 1;
}

header h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--white-color);
}

.tagline {
    font-size: 1.2rem;
    font-style: italic;
}

/* Navigation Styles */
nav {
    background-color: var(--white-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

nav li {
    padding: 1rem;
}

nav a {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem;
    border-bottom: 2px solid transparent;
}

nav a:hover {
    border-bottom: 2px solid var(--accent-color);
}

/* Section Styles */
.section {
    padding: 3rem 0;
}

.section:nth-child(even) {
    background-color: var(--white-color);
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Overview Section */
.overview-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.overview-text, .overview-image {
    flex: 1 1 400px;
}

.overview-text p {
    font-size: 1.1rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Neighborhood Section */
.neighborhood-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
}

.neighborhood-text, .neighborhood-image {
    flex: 1 1 400px;
}

.neighborhood-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.neighborhood-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

.neighborhood-list {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.neighborhood-list li {
    margin-bottom: 0.5rem;
}

/* Location Section */
.map-container {
    height: 450px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.contact-item {
    flex: 1 1 300px;
    text-align: center;
    padding: 2rem;
    background-color: var(--white-color);
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-item p {
    font-size: 1.1rem;
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    padding: 2rem 0;
}

/* Image Placeholder Styles (temporary) */
.image-placeholder {
    background-color: var(--secondary-color);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: bold;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

/* Responsive Styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav li {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
}
