/* HERO SECTION */
.hero {
    margin-top: 100px;
    text-align: center;
    padding: 4rem 2rem;
}

.hero h1 {
    font-size: 2rem;
    color: #891515;
    margin-bottom: 1rem;
}

.hero p {
    max-width: 900px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}
.hero-btn {
    display: inline-block;
    background-color: #891515;
    color: #ffffff;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.hero-btn:hover {
    background-color: #6f1010;
    color: #ffffff;
    text-decoration: none;
}

#more-content {
    display: none;
    margin-top: 1rem;
    text-align: justify;
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-images img {
    width: 260px;
    height: 170px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-images img:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}
