body {
    font-family: 'Lato', sans-serif;
    background-color: #f4f1ea;
    color: #1f3a2e;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* NAVIGATION */

.custom-nav {
    background-color: #162a22;
    padding: 12px 0;
}

.nav-link {
    color: #f4f1ea !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #caa472 !important;
}

.nav-logo {
    height: 55px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.08);
}

/* HERO */

.hero-img {
    height: 80vh;
    object-fit: cover;
    filter: brightness(75%);
}

.carousel-caption {
    bottom: 30%;
}

.carousel-caption h1 {
    font-size: 3rem;
}

/* Section */

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.lead-text {
    max-width: 700px;
    margin: 0 auto;
}

/* Button */

.rustic-btn {
    background-color: #8b5e3c;
    color: white;
    padding: 12px 30px;
    border: none;
    transition: all 0.3s ease-in-out;
}

.rustic-btn:hover {
    background-color: #caa472;
    transform: scale(1.08);
}

/* Footer */

.custom-footer {
    background-color: #162a22;
    color: #f4f1ea;
}

/* Image Hover */

img {
    transition: transform 0.5s ease;
}

img:hover {
    transform: scale(1.02);
}

/* Rustic Accordion */

.accordion-item {
    background-color: #f4f1ea;
    border: none;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.accordion-button {
    background-color: #1f3a2e;
    color: #f4f1ea;
    font-family: 'Playfair Display', serif;
    padding: 18px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #8b5e3c;
}

.accordion-button:hover {
    background-color: #2c4b3d;
    color: #caa472;
}

.accordion-body {
    background-color: #fdfaf5;
    padding: 20px;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 1024px) {
    .navbar-nav {
        flex-direction: row;
        gap: 25px;
    }

    .hero-img {
        height: 60vh;
    }
}

/* Smartphone */
@media (max-width: 480px) {

    .navbar .container {
        flex-direction: column;
        text-align: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .nav-logo {
        height: 65px;
        margin-bottom: 10px;
    }

    .hero-img {
        height: 50vh;
    }

    .carousel-caption h1 {
        font-size: 1.8rem;
    }
}