* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4f6f8;
    color: #222;
}

/* ================= HEADER ================= */
.header {
    background: linear-gradient(to right, #000000, #1e90ff);
    color: #e0f000;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.logo span {
    color: #ffd700;
}

.nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.nav a:hover {
    text-decoration: underline;
}

.header-right input {
    padding: 6px 10px;
    border-radius: 4px;
    border: none;
}

/* ================= HERO SLIDER ================= */
.hero-slider {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-controls span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #decc03;
    cursor: pointer;
    padding: 10px;
    z-index: 5;
}

.slider-controls .prev {
    left: 20px;
}

.slider-controls .next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 5;
}

.dot {
    height: 12px;
    width: 12px;
    background: #bbb;
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background: #ffd700;
}

.hero-content button {
    padding: 12px 22px;
    background: #ffd700;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
}

/* ================= VIDEOS ================= */
.filter-buttons {
    text-align: center;
    margin-bottom: 20px;
}
.video-modal video {
    width: 90vw;          /* Fit mobile width */
    max-width: 900px;     /* Desktop limit */
    max-height: 80vh;     /* Prevent overflow */
    height: auto;
    border-radius: 10px;
}
.filter-btn {
    padding: 10px 18px;
    margin: 5px;
    border: none;
    background: #222;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}

.filter-btn.active {
    background: #caa34d;
}

.video-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.video-card {
    cursor: pointer;
    background: #111;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: scale(1.03);
}

.video-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.video-card h4 {
    padding: 10px;
}

.video-card span {
    padding: 0 10px 15px;
    display: block;
    color: #caa34d;
}

/* MODAL */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.video-modal video {
    width: 80%;
    max-width: 800px;
}

.video-modal .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* ================= CATEGORIES ================= */
.categories {
    background: #fff;
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.category-box {
    background: linear-gradient(to bottom, #1e90ff, #0a3d62);
    color: #fff;
    padding: 30px;
    border-radius: 6px;
    text-align: center;
}

.category-box h3 {
    margin-bottom: 10px;
}

.category-box p {
    font-size: 14px;
    margin-bottom: 15px;
}

.category-box button {
    background: #ffd700;
    border: none;
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
}

/* ================= FOOTER ================= */
.footer {
    background: #0a3d62;
    color: #fff;
    padding: 40px 50px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer h4 {
    margin-bottom: 10px;
}

.footer a {
    display: block;
    color: #ddd;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 6px;
}

.footer a:hover {
    color: #ffd700;
}

.footer p {
    font-size: 14px;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #ccc;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero-content {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .nav {
        display: none;
    }
}
/* ================= VIDEO MODAL ================= */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
}

.video-modal video {
    width: 100%;
    height: auto;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
}
/* ================= FILTER BUTTONS ================= */
.filter-buttons {
    margin-bottom: 25px;
}

.filter-btn {
    padding: 8px 16px;
    margin-right: 10px;
    border: none;
    background: #e0e0e0;
    cursor: pointer;
    border-radius: 20px;
    font-size: 14px;
    transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #1e90ff;
    color: #fff;
}
/* ================= CONTACT & BOOKING ================= */
.contact-booking {
    padding: 60px 50px;
    background: #f4f6f8;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-booking h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-form,
.booking-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-booking input,
.contact-booking textarea,
.contact-booking select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.contact-booking textarea {
    resize: none;
    height: 120px;
}

.contact-booking button {
    background: #1e90ff;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}

.contact-booking button:hover {
    background: #0a3d62;
}
/* ================= MOBILE NAV ================= */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 15px;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin: 4px 0;
    border-radius: 3px;
}

@media (max-width: 768px) {

    .header {
        padding: 15px 20px;
    }

    .nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0a3d62;
        flex-direction: column;
        display: none;
        padding: 20px 0;
        z-index: 1000;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 12px 20px;
        display: block;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .hamburger {
        display: flex;
    }

    .header-right input {
        display: none;
    }
}
