@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


.contact-form {
  /*max-width: 700px;*/
  margin: auto;
}

/* ROW */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row.full {
  flex-direction: column;
}

/* INPUT + TEXTAREA */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #f7f7f7;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition: all 0.3s ease;
            font-family: "Montserrat", sans-serif;

}

/* TEXTAREA HEIGHT */
.contact-form textarea {
  min-height: 140px;
  resize: none;
}

/* FOCUS EFFECT */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c49a6c;
  background: #fff;
}

/* BUTTON */
.btn-submit {
  margin-top: 10px;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  background: #b7a597;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
            font-family: "Montserrat", sans-serif;

}

/* HOVER */
.btn-submit:hover {
  background: #c49a6c;
}




/*app form*/
/* =====================================================
   FORM WRAPPER
===================================================== */

.application-form {
    width: 100%;
    margin: 0 auto;
    padding: 35px;

    background: #fff;

    border: 1px solid #e7e2de;
    border-radius: 12px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);

    font-family: "Montserrat", sans-serif;

    box-sizing: border-box;
}


/* =====================================================
   SECTION
===================================================== */

.application-form .form-section-title {
    margin-bottom: 35px;
    padding-bottom: 30px;

    border-bottom: 1px solid #e5e5e5;

    position: relative;

    color: #3b2c20;

    font-size: 20px;
    font-weight: 600;
}


/* =====================================================
   FORM ROW
===================================================== */

.application-form .form-row {
    display: flex;

    gap: 20px;

    margin-bottom: 20px;
}


/* Full Width */

.application-form .form-row.full {
    display: block;
}


/* =====================================================
   FORM GROUP
===================================================== */

.application-form .form-group {
    width: 100%;
    flex: 1;
}


/* =====================================================
   LABEL
===================================================== */

.application-form .form-group label {
    display: block;

    margin-bottom: 8px;

    color: #333;

    font-family: "Montserrat", sans-serif;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.5;
}


/* Required */

.application-form .required {
    color: #b45c5c;
}


/* =====================================================
   INPUT + SELECT
===================================================== */

.application-form input,
.application-form select,
.application-form textarea {
    width: 100%;

    height: 48px;

    padding: 0 14px;

    border: 1px solid #ddd;

    border-radius: 6px;

    outline: none;

    background: #f8f8f8;

    color: #333;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    box-sizing: border-box;

    transition: all 0.3s ease;
}


/* =====================================================
   TEXTAREA
===================================================== */

.application-form textarea {
    min-height: 140px;

    padding: 14px;

    resize: vertical;
}


/* =====================================================
   PLACEHOLDER
===================================================== */

.application-form input::placeholder,
.application-form textarea::placeholder {
    color: #aaa;
}


/* =====================================================
   FOCUS
===================================================== */

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    border-color: #b6a697;

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(182, 166, 151, 0.1);
}


/* =====================================================
   SUBMIT
===================================================== */

.application-form .btn-submit {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 150px;

    height: 48px;

    padding: 0 25px;

    margin-top: 10px;

    border: none;

    border-radius: 30px;

    background: #b6a697;

    color: #fff;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}


/* Hover */

.application-form .btn-submit:hover {
    background: #0a2342;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .application-form {
        padding: 25px 18px;

        border-radius: 8px;
    }

    .application-form .form-section-title {
        margin-bottom: 25px;
        padding-bottom: 15px;

        font-size: 18px;
    }

    .application-form .form-row {
        flex-direction: column;

        gap: 18px;

        margin-bottom: 18px;
    }

    .application-form .form-group label {
        font-size: 14px;
    }

    .application-form input,
    .application-form select,
    .application-form textarea {
        font-size: 13px;
    }

}

















/* =====================================================
   EVENT BOOKING FORM
===================================================== */

.event-booking-form {
    width: 100%;
    /*max-width: 900px;*/

    margin: 0 auto;

    padding: 35px;

    background: #fff;

    border: 1px solid #e7e2de;

    border-radius: 12px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);

    font-family: "Montserrat", sans-serif;
}


/* =====================================================
   SECTION
===================================================== */

.booking-section {
    margin-bottom: 35px;

    padding-bottom: 30px;

    border-bottom: 1px solid #e5e5e5;
}

.booking-section:last-child {
    margin-bottom: 0;

    padding-bottom: 0;

    border-bottom: none;
}


/* =====================================================
   TITLE
===================================================== */

.booking-title {
    position: relative;

    margin: 0 0 25px;

    padding-bottom: 12px;

    color: #3b2c20;

    font-size: 20px;

    font-weight: 600;
}

.booking-title::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 45px;

    height: 2px;

    background: #b6a697;
}


/* =====================================================
   TABLE
===================================================== */

.booking-table-wrap {
    width: 100%;

    overflow-x: auto;
}

.booking-table {
    width: 100%;

    border-collapse: collapse;

    min-width: 650px;

    background: #fff;
}

.booking-table th {
    font-family: "Montserrat", sans-serif;


    padding: 14px 15px;

    background: #3b2c20;

    color: #fff;

    text-align: left;

    font-size: 16px;

    font-weight: 600;
}

.booking-table td {
    padding: 15px;

    border: 1px solid #e5e5e5;

    color: #555;

    font-size: 13px;

    vertical-align: middle;
}

.booking-table tbody tr:hover {
    background: #faf8f6;
}


/* =====================================================
   TICKET COUNTER
===================================================== */

.ticket-counter {
    display: inline-flex;

    align-items: center;

    height: 38px;

    border: 1px solid #ddd;

    border-radius: 5px;

    overflow: hidden;

    background: #fff;
}

.ticket-btn {
    width: 35px;

    height: 38px;

    border: none;

    font-family: "Montserrat", sans-serif;


    background: #0a2342;

    color: #fff;

    font-size: 17px;

    cursor: pointer;

    transition: .3s ease;
}

.ticket-btn:hover {
    background: #b6a697;
}

.ticket-counter span {
    width: 45px;

    font-family: "Montserrat", sans-serif;


    text-align: center;

    color: #333;

    font-size: 15px;

    font-weight: 600;
}

.ticket-select {
    width: 220px;

    height: 45px;

    padding: 0 14px;

    border: 1px solid #ddd;

    border-radius: 6px;

    background: #fff;

    color: #333;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    outline: none;

    cursor: pointer;

    transition: all 0.3s ease;
}

.ticket-select:focus {
    border-color: #b6a697;

    box-shadow:
        0 0 0 3px rgba(182, 166, 151, 0.1);
}

/* =====================================================
   FORM GRID
===================================================== */

.booking-form-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


/* =====================================================
   FIELD
===================================================== */

.booking-field {
    width: 100%;
}

.booking-field label,
.booking-question > label {
    display: block;

    margin-bottom: 8px;

    font-family: "Montserrat", sans-serif;


    color: #333;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.5;
}

.booking-field label span,
.booking-question label span {
    color: #b45c5c;
}


/* =====================================================
   INPUT + SELECT
===================================================== */

.booking-field input,
.booking-field select {
    width: 100%;


    height: 48px;

    padding: 0 14px;

    border: 1px solid #ddd;

    border-radius: 6px;

    outline: none;

    background: #f8f8f8;

    color: #333;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    transition: .3s ease;
}

.booking-field input::placeholder {
    color: #aaa;
}

.booking-field input:focus,
.booking-field select:focus {
    border-color: #b6a697;

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(182, 166, 151, .1);
}


/* =====================================================
   QUESTIONS
===================================================== */

.booking-question {
    margin-top: 25px;
}


/* =====================================================
   RADIO OPTIONS
===================================================== */

.booking-options {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
}

.booking-options label {
    display: flex;

    font-family: "Montserrat", sans-serif;


    align-items: center;

    min-height: 45px;

    padding: 10px 13px;

    border: 1px solid #e1e1e1;

    border-radius: 6px;

    background: #fafafa;

    color: #555;

    font-size: 15px;

    line-height: 1.5;

    cursor: pointer;

    transition: .3s ease;
}

.booking-options label:hover {
    border-color: #b6a697;

    background: #faf8f6;
}

.booking-options input {
    margin-right: 9px;

    accent-color: #0a2342;

    cursor: pointer;
}


/* =====================================================
   CHECKOUT
===================================================== */

.booking-submit {
    margin-top: 30px;
}

.booking-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-width: 150px;

    height: 48px;

    padding: 0 25px;

    border: none;

    border-radius: 30px;

    background: #b6a697;

    color: #fff;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s ease;
}

.booking-btn span {
    font-size: 18px;

    transition: transform .3s ease;
}

.booking-btn:hover {
    background: #0a2342;
}

.booking-btn:hover span {
    transform: translateX(5px);
}

.blog-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 30px;
}

.blog-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.blog-slide {
    flex: 0 0 33.33%;
    width: 33.33%;
    padding: 5px;
    box-sizing: border-box;
}

.blog-slide img {
    width: 100%;
    height: auto;
    display: block;
}


/* DOTS */

.slider-dots {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 7px;
}

.slider-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #ccc;

    cursor: pointer;

    transition: 0.3s;
}

.slider-dot.active {
    background: #333;
    transform: scale(1.2);
}
@media (max-width: 767px) {

    .blog-slide img {
        height: 280px;
    }

    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    .blog-slide {
    flex: 0 0 100%;
    width: 100%;
  
}

}
/* ==========================================
 * Slider Image
 * ========================================== */

.blog-slide a {
    display: block;
    cursor: zoom-in;
}


/* ==========================================
 * LIGHTBOX
 * ========================================== */

.blog-lightbox {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

   background: rgb(14 14 14 / 84%);

    display: none;

    align-items: center;
    justify-content: center;

    z-index: 999999;

    padding: 40px;

    box-sizing: border-box;
}


/* Show */

.blog-lightbox.active {
    display: flex;
}


/* Image */

.blog-lightbox img {
    max-width: 85%;
    max-height: 80%;

    width: auto;
    height: auto;

    object-fit: contain;

    display: block;
}


/* ==========================================
 * CLOSE
 * ========================================== */

.lightbox-close {
    position: absolute;

    top: 20px;
    right: 25px;

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    background-color: #000;

    color: #fff;

    font-size: 32px;
    line-height: 40px;

    cursor: pointer;

    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);
}


/* ==========================================
 * PREVIOUS / NEXT
 * ========================================== */

.lightbox-prev,
.lightbox-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.2);

    color: #fff;

    font-size: 28px;

    cursor: pointer;

    z-index: 10;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
}


/* ==========================================
 * IMAGE COUNTER
 * ========================================== */

.lightbox-counter {
    position: absolute;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    color: #fff;

    font-size: 16px;

    background: rgba(0, 0, 0, 0.5);

    padding: 6px 14px;

    border-radius: 20px;

    z-index: 10;
}


/* ==========================================
 * MOBILE
 * ========================================== */

@media (max-width: 767px) {

    .blog-lightbox {
        padding: 20px;
    }


    .blog-lightbox img {
        max-width: 90%;
        max-height: 75%;
    }


    .lightbox-prev,
    .lightbox-next {

        width: 40px;
        height: 40px;

        font-size: 22px;

    }


    .lightbox-prev {
        left: 10px;
    }


    .lightbox-next {
        right: 10px;
    }


    .lightbox-close {

        top: 10px;
        right: 10px;

        width: 40px;
        height: 40px;

        font-size: 28px;

    }


    .lightbox-counter {

        bottom: 15px;

        font-size: 14px;

    }

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .event-booking-form {
        padding: 25px 18px;

        border-radius: 8px;
    }

    .booking-title {
        font-size: 18px;
    }

    .booking-form-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .booking-options {
        grid-template-columns: 1fr;
    }

    .booking-table {
        min-width: 650px;
    }

}



/* ==========================================
 * YOUTUBE VIDEO GRID
 * ========================================== */

.youtube-video-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    width: 100%;

    margin: 30px auto;

}


/* ==========================================
 * VIDEO ITEM
 * ========================================== */

.youtube-video-item {

    width: 100%;

}


/* ==========================================
 * THUMBNAIL
 * ========================================== */

.youtube-thumbnail {

    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #000;

    cursor: pointer;

}


.youtube-thumbnail img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.3s ease;

}


.youtube-thumbnail:hover img {

    transform: scale(1.05);

}


/* ==========================================
 * PLAY BUTTON
 * ========================================== */

.youtube-play-button {

    position: absolute;

    top: 50%;

    left: 50%;

    transform:
        translate(-50%, -50%);

    width: 55px;

    height: 40px;

    border-radius: 10px;

    background:
        rgba(255, 0, 0, 0.9);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

}


/* ==========================================
 * LIGHTBOX
 * ========================================== */

.youtube-lightbox {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background:
        rgba(0, 0, 0, 0.92);

    display: none;

    align-items: center;

    justify-content: center;

    z-index: 999999;

    padding: 40px;

    box-sizing: border-box;

}


.youtube-lightbox.active {

    display: flex;

}


/* ==========================================
 * VIDEO
 * ========================================== */

.youtube-lightbox-video {

    width: 80vw;

    max-width: 1000px;

    aspect-ratio: 16 / 9;

}


.youtube-lightbox-video iframe {

    width: 100%;

    height: 100%;

    border: 0;

}


/* ==========================================
 * CLOSE
 * ========================================== */

.youtube-lightbox-close {

    position: absolute;

    top: 20px;

    right: 25px;

    width: 45px;

    height: 45px;

    border: none;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.2);

    color: #fff;

    font-size: 32px;

    cursor: pointer;

    z-index: 10;

}


/* ==========================================
 * PREVIOUS / NEXT
 * ========================================== */

.youtube-lightbox-prev,
.youtube-lightbox-next {

    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    width: 50px;

    height: 50px;

    border: none;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.2);

    color: #fff;

    font-size: 28px;

    cursor: pointer;

    z-index: 10;

}


.youtube-lightbox-prev {

    left: 25px;

}


.youtube-lightbox-next {

    right: 25px;

}


/* ==========================================
 * COUNTER
 * ========================================== */

.youtube-lightbox-counter {

    position: absolute;

    bottom: 25px;

    left: 50%;

    transform:
        translateX(-50%);

    color: #fff;

    background:
        rgba(0, 0, 0, 0.5);

    padding: 6px 14px;

    border-radius: 20px;

    font-size: 16px;

}


/* ==========================================
 * TABLET
 * ========================================== */

@media (max-width: 900px) {

    .youtube-video-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* ==========================================
 * MOBILE
 * ========================================== */

@media (max-width: 600px) {

    .youtube-video-grid {

        grid-template-columns:
            1fr;

        gap: 15px;

    }


    .youtube-lightbox {

        padding: 15px;

    }


    .youtube-lightbox-video {

        width: 90vw;

    }


    .youtube-lightbox-prev,
    .youtube-lightbox-next {

        width: 40px;

        height: 40px;

        font-size: 22px;

    }


    .youtube-lightbox-prev {

        left: 8px;

    }


    .youtube-lightbox-next {

        right: 8px;

    }

}

/* ==========================================
 * YOUTUBE LIGHTBOX
 * ========================================== */

.youtube-lightbox {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background:
        rgba(0, 0, 0, 0.92);

    display: none;

    align-items: center;

    justify-content: center;

    z-index: 999999;

    padding: 40px;

    box-sizing: border-box;

}


.youtube-lightbox.active {

    display: flex;

}


/* ==========================================
 * YouTube Video Container
 * ========================================== */

.youtube-lightbox-video {

    width: 80vw;

    max-width: 1000px;

    aspect-ratio: 16 / 9;

    position: relative;

}


.youtube-lightbox-video iframe {

    width: 100%;

    height: 100%;

    border: 0;

    display: block;

}


/* ==========================================
 * CLOSE BUTTON
 * ========================================== */

.youtube-lightbox-close {

    position: absolute;

    top: 20px;

    right: 25px;

    width: 45px;

    height: 45px;

    border: none;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.2);

    color: #fff;

    font-size: 32px;

    line-height: 40px;

    cursor: pointer;

    z-index: 10;

}


.youtube-lightbox-close:hover {

    background:
        rgba(255, 255, 255, 0.4);

}


/* ==========================================
 * PREVIOUS / NEXT
 * ========================================== */

.youtube-lightbox-prev,
.youtube-lightbox-next {

    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    width: 50px;

    height: 50px;

    border: none;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.2);

    color: #fff;

    font-size: 28px;

    cursor: pointer;

    z-index: 10;

}


.youtube-lightbox-prev {

    left: 25px;

}


.youtube-lightbox-next {

    right: 25px;

}


.youtube-lightbox-prev:hover,
.youtube-lightbox-next:hover {

    background:
        rgba(255, 255, 255, 0.4);

}


/* ==========================================
 * COUNTER
 * ========================================== */

.youtube-lightbox-counter {

    position: absolute;

    bottom: 25px;

    left: 50%;

    transform:
        translateX(-50%);

    color: #fff;

    font-size: 16px;

    background:
        rgba(0, 0, 0, 0.5);

    padding: 6px 14px;

    border-radius: 20px;

    z-index: 10;

}


/* ==========================================
 * MOBILE
 * ========================================== */

@media (max-width: 767px) {

    .youtube-slide {

        flex: 0 0 50%;

        width: 50%;

    }


    .youtube-thumbnail {

        height: 180px;

    }


    .youtube-lightbox {

        padding: 20px;

    }


    .youtube-lightbox-video {

        width: 90vw;

    }


    .youtube-lightbox-prev,
    .youtube-lightbox-next {

        width: 40px;

        height: 40px;

        font-size: 22px;

    }


    .youtube-lightbox-prev {

        left: 10px;

    }


    .youtube-lightbox-next {

        right: 10px;

    }


    .youtube-lightbox-close {

        top: 10px;

        right: 10px;

        width: 40px;

        height: 40px;

        font-size: 28px;

    }


    .youtube-lightbox-counter {

        bottom: 15px;

        font-size: 14px;

    }

}