/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f4efe8;
    color: #222;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('vama.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    inset: 0;
     background: linear-gradient(
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.1),
        rgba(0,0,0,0)
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-content img {
    width: 90%;
    max-width: 420px;
}

.hero-content p {
    font-family: 'Permanent Marker', cursive;
    font-size: 28px;
    margin: 15px 0;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #f28c38;
    color: white;
    border-radius: 30px;
    text-decoration: none;
}

/* SECTION */
.section {
    padding: 70px 20px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.text {
    max-width: 600px;
    margin: 15px auto 25px;
    line-height: 1.6;
}

/* HIGHLIGHT */
.highlight {
    font-family: 'Permanent Marker', cursive;
    font-size: 36px;
    color: #f28c38;
    margin-bottom: 15px;
}

/* CARDS */
.cards {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.card {
    flex: 1;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    padding: 15px;
}

/* GALLERY */
.gallery {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    margin-top: 20px;
}

.gallery img {
    height: 220px;
    border-radius: 15px;
}

/* FORM */
.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 30px auto 0;
}

input, textarea {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

button {
    background: #f28c38;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

/* MAP */
.map {
    width: 100%;
    height: 400px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {

    .hero {
        height: 80vh;
        padding: 20px;
    }

    .hero-content p {
        font-size: 22px;
    }

    .highlight {
        font-size: 28px;
    }

    .cards {
        flex-direction: column;
    }

    .gallery img {
        height: 160px;
    }

    .map {
        height: 300px;
    }

}
/* WHATSAPP ANIMAT */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;

    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
}

/* apare */
.whatsapp.show {
    opacity: 1;
    transform: translateY(0);
}

/* pulse */
.whatsapp.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
    html {
    scroll-behavior: smooth;
}
