/* -------------------------
   Global Styles
-------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #faf5ee; /* light beige */
    color: #5a3e2b; /* deep brown */
    line-height: 1.6;
}

/* -------------------------
   Navigation Bar
-------------------------- */
.main-header {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #e5d8c6;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #5a3e2b;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #5a3e2b;
    transition: 0.3s;
}

.nav-links a:hover,
.active-link {
    color: #a47a56;
}

/* -------------------------
   HERO SECTION
-------------------------- */
.hero-section {
    background-color: #f5efe6; /* beige */
    padding: 100px 20px;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 25px auto;
    color: #664b38;
}

.hero-button {
    padding: 15px 30px;
    background-color: #5a3e2b;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.hero-button:hover {
    background-color: #a47a56;
}

/* -------------------------
   HIGHLIGHTS SECTION
-------------------------- */
.highlights-section {
    padding: 80px 20px;
    text-align: center;
}

.highlights-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #5a3e2b;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.highlight-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e6dece;
    transition: 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: #a47a56;
}

.highlight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #5a3e2b;
}

.highlight-card p {
    color: #664b38;
}

/* -------------------------
   CONTACT CTA
-------------------------- */
.contact-cta {
    background-color: #f5efe6;
    text-align: center;
    padding: 60px 20px;
    margin-top: 50px;
    border-radius: 10px;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.contact-cta .cta-button {
    padding: 12px 25px;
    background-color: #5a3e2b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.contact-cta .cta-button:hover {
    background-color: #a47a56;
}

/* -------------------------
   FOOTER
-------------------------- */
.main-footer {
    background-color: #5a3e2b;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* -------------------------
   Responsive
-------------------------- */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .hero-section {
        padding: 70px 15px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }
}
