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

/* Variables */
:root {
    --primary: #8e6c5a;
    --secondary: #e9d8c5;
    --accent: #d4a96a;
    --text: #333;
    --light: #f8f5f2;
    --dark: #4a3f35;
}

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

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--dark);
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

p {
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('placeholder-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
}

.scroll-down {
    display: inline-block;
    margin-top: 2rem;
    font-size: 2rem;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}

/* Navigation */
nav {
    background-color: var(--primary);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent);
}

/* Content Sections */
.content-section {
    padding: 5rem 10%;
}

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

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
}

.image-placeholder {
    flex: 1;
    height: 300px;
    background-color: var(--secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
}

/* Gallery */
.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-item {
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: auto;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 3rem 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper, .reverse {
        flex-direction: column;
    }
    
    .image-placeholder {
        width: 100%;
    }
    
    nav ul {
        display: none;
    }
}
