/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f7f2eb;
    color: #3c2c1e;
}

/* Header */
header {
    background: #fff;
    color: #fff;
    padding: 10px 0;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    width: 150px;
}
nav ul {
    list-style: none;
    display: flex;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #d9c1a5;
}

/* Hero Section */
.hero {
    background: url('../images/hero.webp') no-repeat center center/cover;
    color: #fff;
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}
.hero h1 {
    font-size: 3em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.cta-button {
    background: #8c5c3c;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}
.cta-button:hover {
    background: #5a3b26;
}

.small-hero {
    height: 50vh;
}

/* Text Overlay for Better Visibility */
.text-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}
/* Feature Boxes */
.features {
    background: #f0e4d7;
    padding: 40px 0;
}
.features .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.feature-box {
    background: #fff;
    padding: 20px;
    width: 45%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin: 10px;
    text-align: center;
    border-left: 4px solid #8c5c3c;
    transition: transform 0.3s;
}
.feature-box:hover {
    transform: translateY(-5px);
}
.feature-button {
    background: #8c5c3c;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
    transition: background 0.3s;
}
.feature-button:hover {
    background: #5a3b26;
}

/* Footer */
footer {
    background: #3c2c1e;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}
footer ul li {
    margin: 0 10px;
}
footer ul li a {
    color: #d9c1a5;
    text-decoration: none;
}
footer ul li a:hover {
    color: #fff;
}
