:root {
    --green: #1f5e2f;
    --green2: #2d7a40;
    --gold: #d4af37;
    --gold-light: #e8c766;
    --white: #ffffff;
    --light: #f8f8f5;
    --text: #444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--light);
    color: var(--text);
}

.hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content {
    max-width: 850px;
    color: white;
    animation: fadeUp 1.3s ease;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 35px;
}

.book-btn {
    display: inline-block;
    background: var(--gold);
    color: #222;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    transition: 0.35s;
    animation: pulse 2s infinite;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.book-btn i {
    margin-right: 10px;
    color: #1b5e20;
}

.book-btn:hover {
    background: var(--gold-light);
    transform: translateY(-4px);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 70px 0;
}

.about {
    text-align: center;
    animation: fadeUp 1s ease;
}

.about h2 {
    color: var(--green);
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.about p {
    max-width: 850px;
    margin: auto;
    line-height: 1.8;
}

.about-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: larger;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
    margin: 60px 0;
}

.gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.gallery img:hover {
    transform: scale(1.05);
}

.contact {
    background: white;
    border-top: 6px solid var(--gold);
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: fadeUp 1.2s ease;
}

.contact h2 {
    color: var(--green);
    margin-bottom: 20px;
}

.contact p {
    margin: 10px 0;
}

.contact a {
    color: var(--green2);
    text-decoration: none;
}

.socials {
    display: flex;
    gap: 18px;
    margin-top: 30px;
}

.socials a {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    color: white;
    transition: 0.3s;
}

.socials a:hover {
    transform: translateY(-6px) rotate(8deg);
}

.facebook {
    background: #1877f2;
}

.whatsapp {
    background: #25d366;
}

.instagram {
    background: #d62976;
}

footer {
    margin-top: 60px;
    background: var(--green);
    color: white;
    text-align: center;
    padding: 22px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.6rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .book-btn {
        padding: 15px 28px;
        font-size: 16px;
    }

    .contact {
        padding: 30px;
    }
}
