:root {
    --accent: #00a651;
    --bg: #0f111a;
    --light: #fafafa;
    --gray: #ddd;
    --radius: 10px;
    --transition: all .3s ease;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', system-ui, sans-serif;
    color: #222;
    background: var(--light);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    background: var(--gray);
    color: #000;
    padding: .6rem 1rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn.primary {
    background: var(--accent);
    color: #fff;
}

.btn:hover {
    opacity: .85;
}

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .8rem 0;
}

.logo {
    margin: 0;
    font-weight: 700;
    color: var(--accent);
}

.nav-inner nav a {
    margin-left: 1rem;
    font-weight: 500;
}

/* Hero */
.hero {
    background: url('images/backgroundpic.png') center/cover no-repeat;
    position: relative;
    height: 80vh;
    color: #fff;
    display: flex;
    align-items: center;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

/* About */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 4rem 0;
}

.about img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 6px 20px rgba(0,0,0,.1);
}

/* Packages */
.packages {
    background: #fafafa;
    padding: 4rem 0;
    text-align: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    transition: var(--transition);
}

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

.card.featured {
    border: 2px solid var(--accent);
}

.price {
    font-size: 1.4rem;
    margin: 1rem 0;
    font-weight: 600;
}

/* Gallery */
.gallery {
    padding: 4rem 0;
    background: #fff;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.grid img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 3px 12px rgba(0,0,0,.1);
}

/* Contact */
.contact {
    background: #fafafa;
    padding: 4rem 0;
    text-align: center;
}

form {
    display: grid;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
    text-align: left;
}

label {
    display: flex;
    flex-direction: column;
    font-weight: 500;
}

input,
select,
textarea {
    padding: .6rem;
    border: 1px solid #ccc;
    border-radius: var(--radius);
    font-size: 1rem;
}

button {
    cursor: pointer;
}

/* Footer */
.footer {
    background: var(--bg);
    color: #eee;
    padding: 1.5rem 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.socials a {
    margin-left: 1rem;
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .about {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about img {
        order: -1;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 200;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

/* FAQ Section */
.faq {
    background: #fff;
    padding: 4rem 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-items {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-answer {
    display: none;
    padding: 0 1rem 1rem;
    color: #555;
    line-height: 1.5;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* Booths Page */
.hero.small {
    height: 50vh;
    background: url('https://picsum.photos/seed/boothhero2/1600/900') center/cover no-repeat;
}

.booths {
    padding: 4rem 0;
    text-align: center;
}

.booth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.booth-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease;
}

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

.booth-card img {
    width: 100%;
    height: auto;
    display: block;
}

.booth-info {
    padding: 1.5rem;
}

.booth-info h3 {
    margin-top: 0;
    color: var(--accent);
}

.booth-info ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.booth-info li {
    margin: 0.3rem 0;
}

.cta {
    background: var(--accent);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.cta .btn {
    margin-top: 1rem;
    background: #fff;
    color: var(--accent);
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 3px 12px rgba(0,0,0,.1);
}

.video-wrapper iframe,
.video-wrapper video {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: var(--radius);
}

/* Lightbox overlay */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
}

.lightbox-content img,
.lightbox-content iframe,
.lightbox-content video {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent);
}

