/*
Theme: Terra Premium
Rustic Sophisticated – warm, deep, memorable
*/

/* GLOBAL */

body {
    background: #F4EFE6;
    color: #3E2723;
}

.section {
    padding: 8rem 0;
}

/* HERO */

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero__overlay {
    background: linear-gradient(to bottom,
            rgba(62, 39, 35, 0.65),
            rgba(62, 39, 35, 0.35));
}

.hero__title {
    font-family: 'Merriweather', serif;
    font-weight: 400;
    font-size: 3.3rem;
    line-height: 1.1;
    text-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
}

.hero__subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* BUTTONS */

.btn {
    background: linear-gradient(135deg,
            #6B3E26,
            #A0522D);
    color: #FFFFFF;
    border-radius: 12px;
    padding: 1rem 2.4rem;
    box-shadow: 0 12px 30px rgba(62, 39, 35, 0.3);
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(62, 39, 35, 0.4);
}

/* CARDS */

.feature-card,
.detail-card,
.testimonial-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px -18px rgba(62, 39, 35, 0.25);
    transition: all 0.3s ease;
}

.feature-card:hover,
.detail-card:hover {
    transform: translateY(-3px);
}

/* GALLERY */

.gallery {
    gap: 2.5rem;
}

.gallery__item {
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #E6DED2;
}

.gallery__item img {
    transition: transform 0.6s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

/* DETAILS SECTION ALT BG */

.section.details {
    background: #E6DED2;
}

/* CTA */

.cta-section {
    background: #D7CCC8;
    padding: 8rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Merriweather', serif;
    color: #3E2723;
}

/* FOOTER */

.footer {
    background: #3E2723;
    color: #F4EFE6;
    padding: 6rem 0 3rem;
}

.footer h3,
.footer h4 {
    font-family: 'Merriweather', serif;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer a {
    color: #D2B48C;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #BCAAA4;
}