/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* BODY */
body {
    background: #f6f8f9;
    color: #333;
}

/* HERO */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;

    /* Background settings */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Animation */
    animation: heroBackground 30s infinite;
}

/* Background slideshow */
@keyframes heroBackground {
    0% {
        background-image: url("Image/background1.jpeg");
    }

    33% {
        background-image: url("Image/background2.jpeg");
    }

    66% {
        background-image: url("Image/background3.jpeg");
    }

    100% {
        background-image: url("Image/background4.jpeg");
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 30, 30, 0.55);
}

.hero-content {
    position: relative;
    color: white;
    max-width: 900px;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ffd166;
    color: black;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* WhatsApp button */
.btn-wa {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.btn-wa img {
    width: 20px;
    height: 20px;
}

/* ABOUT */
.about {
    padding: 70px 20px;
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

.about h2 {
    font-size: 36px;
    color: #0b6e4f;
    margin-bottom: 20px;
}

.about p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 17px;
}

/* PACKAGES */
.packages {
    padding: 70px 20px;
    text-align: center;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* PACKAGE CARD WITH IMAGE BACKGROUND */
.package-card {
    position: relative;
    color: white;
    padding: 25px;
    border-radius: 15px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* dark overlay */
.package-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

/* content above overlay */
.package-card h3,
.package-card ul,
.package-card a {
    position: relative;
    z-index: 1;
}

.package-card ul {
    list-style: none;
    margin: 10px 0;
}

.package-card li {
    margin: 5px 0;
}

/* backgrounds per package */
.p1 { background: url("Image/p1.jpg") center/cover; }
.p2 { background: url("Image/p2.jpg") center/cover; }
.p3 { background: url("Image/p3.jpg") center/cover; }
.p4 { background: url("Image/p4.jpg") center/cover; }

/* BOOK BUTTON */
.book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    background: #25D366;
    padding: 10px 14px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.book-btn img {
    width: 18px;
    height: 18px;
}

/* GALLERY + REVIEWS SECTION */
.gallery-reviews {
    padding: 80px 20px;
    background: #ffffff;
}

/* SECTION TITLE */
.gallery-reviews h2 {
    font-size: 34px;
    color: #0b6e4f;
    text-align: center;
    margin-bottom: 10px;
}

.gallery-reviews p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

/* MAIN BIG IMAGE */
.main-gallery-image {
    width: 50%;
    max-width: 1000px;
    margin: 20px auto;
}

.main-gallery-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: 0.3s;
}

/* THUMBNAILS */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.8;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* REVIEWS */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.review-card {
    background: #f6f8f9;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-8px);
}

.review-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: #333;
}

.review-card h4 {
    color: #0b6e4f;
}

/* FAQ SECTION */
.faq {
    padding: 80px 20px;
    background: #f6f8f9;
    text-align: center;
}

.faq h2 {
    font-size: 34px;
    color: #0b6e4f;
    margin-bottom: 10px;
}

.faq p {
    color: #666;
    margin-bottom: 40px;
}

/* FAQ CONTAINER */
.faq-container {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* FAQ ITEM */
.faq-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
}

/* QUESTION */
.faq-item h3 {
    color: #0b6e4f;
    font-size: 18px;
    margin-bottom: 8px;
}

/* ANSWER */
.faq-item p {
    color: #444;
    line-height: 1.6;
}

/* CONTACT */
.contact {
    padding: 60px 20px;
    text-align: center;
}

/* FLOAT WA */
.float-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.float-wa img {
    width: 30px;
    height: 30px;
}