/* GLOBAL */
body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    background: #F5F2ED;
    color: #111;
    line-height: 1.55;
}

h1, h2, h3, h4 {
    font-family: "Playfair Display", serif;
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* HERO */
.hero {
    height: 70vh;
    background: linear-gradient(
        rgba(0,0,0,0.50),
        rgba(0,0,0,0.35)
      ),
      url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin: 0;
}
.subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* SECTIONS */
.section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

/* FEATURES */
.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 60px auto;
    padding: 20px;
    max-width: 1000px;
}
.feature {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    flex: 1;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* LIST */
.list {
    list-style: none;
    padding-left: 0;
}
.list li {
    padding: 6px 0;
}

/* WHY US */
.why-us {
    background: #8B0033;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}
.reasons {
    max-width: 900px;
    margin: auto;
    display: flex;
    gap: 20px;
}
.reason {
    flex: 1;
}

/* CTA */
.cta {
    display: inline-block;
    background: #8B0033;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.cta:hover {
    background: #5c0023;
}

/* FOOTER */
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 800px) {
    .features, .reasons {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
}
