body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f8f8 url('images/avi.png') no-repeat center center fixed;
    color: #222;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* dark layer */
    z-index: -1;
}
.hero-section {
    padding-top: 150px;   /* space below navbar */
    text-align: center;
    color: white;
}

header {
    background: #222;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
nav a:hover {
    text-decoration: underline;
}
.intro {
    text-align: center;
    margin: 2rem 0;
}
.types {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1rem;
    text-align: center;
}
.type-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.type {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 1rem;
    width: 320px;
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.type img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}
.type-images {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.type-images img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 0.5rem 0;
    font-size: 1rem;
    position: fixed;
    width: 100%;
    bottom: 0;
}
@media (max-width: 700px) {
    footer {
        position: static;
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }
}

.navBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
}

#prevBtn { left: 40px; }
#nextBtn { right: 40px; }

.navBtn:hover {
    background: rgba(0,0,0,0.8);
}


/* Lightbox overlay */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Close button */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

/* Fade animation */
#lightboxImg {
    max-width: 90%;
    max-height: 90%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

#lightboxImg.show {
    opacity: 1;
}

/* Navigation buttons */
.navBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    user-select: none;
}

#prevBtn { left: 40px; }
#nextBtn { right: 40px; }

.navBtn:hover {
    background: rgba(0,0,0,0.8);
}


/* Packages Section */
.packages {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1rem;
    text-align: center;
}
.packages h2 {
    color: #fff;
    margin-bottom: 2rem;
}
.package-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.package {
    background: #bd7979;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 1rem;
    width: 280px;
    margin-bottom: 1rem;
}
.package h3 {
    margin-top: 0;
}
.package ul {
    padding-left: 1.2rem;
    text-align: left;
}
@media (max-width: 700px) {
    .package-list {
        flex-direction: column;
        gap: 1rem;
    }
    .package {
        width: 90vw;
        margin: 0 auto 1rem auto;
    }
}

/* Contact Section */
.contact {
    max-width: 500px;
    margin: 2rem auto;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.contact h2 {
    color: #222;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-form label {
    font-weight: bold;
}
.contact-form input,
.contact-form textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}
.contact-form button {
    background: #222;
    color: #fff;
    border: none;
    padding: 0.7rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: #444;
}
.contact-info {
    margin-top: 2rem;
    font-size: 1rem;
    word-break: break-word;
}
.contact-info a {
    color: #222;
    text-decoration: underline;
    font-weight: bold;
    word-break: break-all;
}
@media (max-width: 700px) {
    .contact {
        width: 98vw;
        padding: 0.7rem;
        margin-bottom: 2.5rem;
    }
    .contact-form {
        gap: 1.5rem;
    }
    .contact-form input,
    .contact-form textarea {
        font-size: 1rem;
        padding: 0.8rem;
    }
    .contact-form button {
        font-size: 1.2rem;
        padding: 1rem;
        margin-top: 0.5rem;
    }
    .contact-info {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }
}

/* Gallery Section */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.7rem;
    width: 100%;
    margin-bottom: 1rem;
}
.gallery img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    cursor: pointer;
    transition: transform 0.2s;
    background: #f0f0f0;
}
.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
@media (max-width: 900px) {
    .type-list {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .type {
        width: 90vw;
        margin: 0 auto 2rem auto;
    }
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .gallery img {
        height: 90px;
    }
}
@media (max-width: 600px) {
    .type {
        width: 98vw;
        padding: 0.5rem;
    }
    .gallery {
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
    }
    .gallery img {
        height: 60px;
    }
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.lightbox .close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}
@media (max-width: 700px) {
    .lightbox img {
        max-width: 98vw;
        max-height: 60vh;
    }
    .lightbox .close {
        top: 10px;
        right: 20px;
        font-size: 2rem;
    }
}