/* assets/css/style.css */

/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #F7F5F2;
    color: #2F2F2F;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== Container ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Typography ===== */
h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    color: #6D6D6D;
}

/* ===== Header ===== */
header {
    background: #ffffff;
    border-bottom: 1px solid #E5E2DD;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #4A4A4A;
}

/* ===== Navigation ===== */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #4A4A4A;
    font-size: 14px;
    text-transform: uppercase;
}

nav ul li a.active {
    color: #D96C2B;
}

/* ===== Mobile Menu ===== */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 10px 18px;
    background: #D96C2B;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 4px;
}

.btn:hover {
    background: #b85a23;
}

/* ===== Sections ===== */
.section {
    padding: 60px 0;
}

.section-gray {
    background: #EFEDE9;
}

/* ===== Cards ===== */
.grid {
    display: grid;
    gap: 20px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    background: #ffffff;
    padding: 20px;
    border: 1px solid #E5E2DD;
    border-radius: 8px;
}

/* ===== Hero ===== */
.hero {
    padding: 80px 0;
}

.hero h1 {
    max-width: 600px;
}

/* ===== Footer ===== */
footer {
    background: #4A4A4A;
    color: #fff;
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

footer a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 13px;
    color: #ccc;
}

/* ===== Forms ===== */
input, textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #E5E2DD;
    margin-bottom: 15px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 15px;
        border: 1px solid #ddd;
    }

    nav ul.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}