:root {
    --bg: #f4f1ec;
    --primary: #8a7a62;
    --accent: #a89b8a;
    --text: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
a{
    text-decoration: none;
    color: white
}
body {
    background: var(--bg);
    color: var(--text);
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    background: var(--white);
    padding: 15px 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 80px;
    width: 130px;
    object-fit:cover;
    border-radius: 8px;
    object-position: center;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--text);
}

/* HERO */
.hero {
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero img {
    width: 50%;
    border-radius: 10px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* SERVICES */
.services {
    margin: 60px auto;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: white;
    padding: 15px;
    border-radius: 10px;
}

.card img {
    width: 100%;
    border-radius: 8px;
}

/* ABOUT */
.about {
    margin: 60px auto;
}

/* CONTACT */
.contact {
    background: var(--primary);
    color: white;
    padding: 40px 0;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
}
