/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}
h1, h2 {
    color: #4a2c2a; /* Warm earthy tone */
    text-align: center;
    margin-bottom: 1rem;
}
p, li {
    color: #555;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('../assets/img/hero.jpg') center/cover no-repeat;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
.hero-content p {
    margin: 1rem 0;
    font-size: 1.2rem;
}
.btn {
    background: #e63946; /* Vibrant red */
    color: #fff;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}
.btn:hover {
    background: #d62839;
}

/* Sections */
.section {
    padding: 4rem 2rem;
}
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.content-grid.reverse {
    grid-template-columns: 1fr 1fr;
}
.content-grid img {
    width: 100%;
    border-radius: 10px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s;
}
.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Contact */
form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
form input, form textarea {
    padding: 1rem;
    margin: 0.5rem 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
form button {
    align-self: flex-start;
}

/* Footer */
footer {
    background: #f4f4f4;
    text-align: center;
    padding: 1rem;
    color: #777;
}

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