* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Georgia", serif;
    color: #2f2f2f;
    background-color: #ffffff;
    line-height: 1.7;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(122, 31, 61, 0.85), rgba(122, 31, 61, 0.85)),
                url("https://via.placeholder.com/1600x900") center/cover no-repeat;
    color: white;
    padding: 120px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 46px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* SECTIONS */
.section {
    padding: 70px 20px;
    max-width: 1000px;
    margin: auto;
}

.section.light {
    background-color: #f8f2f5;
}

.section h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #7a1f3d;
    font-size: 30px;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* SERVICES */
.services {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: auto;
}

.services li {
    padding: 12px 0;
    text-align: center;
    font-size: 17px;
}

/* CONTACT */
.contact {
    text-align: center;
}

.contact .note {
    margin-top: 15px;
    font-style: italic;
    color: #555;
}

/* FOOTER */
footer {
    background-color: #eee;
    text-align: center;
    padding: 18px;
    font-size: 14px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
}
