/* ==================== Masthead ======================= */
.masthead {
    height: 100vh;
    min-height: 100vh;
    width: 100%;
    background-image: url('../img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.hero-title {
    font-size: clamp(1.5rem, 7vw, 5rem);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0.05em; /* slight increase in spacing */
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.4);
    word-break: break-word;
    max-width: 100%;
}


/* ==================== Images ======================= */
img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* ==================== nav ======================= */

#mainNav {
  background-color: white !important; /* ensure white bg */
}

#mainNav .navbar-brand,
#mainNav .nav-link {
  color: black !important; /* force black text */
}

#mainNav .nav-link:hover,
#mainNav .nav-link:focus {
  color: #333 !important; /* slightly darker black on hover */
}




/* ==================== Ticker ======================= */
/* Adjusting the ticker speed */
.video-ticker {
    position: relative;
    bottom: 0;
    width: 100%;
    background-color: #f47c00;
    overflow: hidden;
    white-space: nowrap;
    z-index: 3;
    height: 50px; /* Slightly increased height */
    display: flex;
    align-items: center;
}

/* Adjusting text size, spacing, and animation speed */
.ticker-text {
    display: inline-block;
    padding-left: 100%;
    animation: ticker-scroll 30s linear infinite; /* Slower animation */
    font-weight: bold;
    color: white;
    font-size: 1.5rem; /* Bigger text size */
    letter-spacing: 0.1em; /* Increased letter spacing */
}

/* Slower scrolling animation */
@keyframes ticker-scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ==================== Video Background ======================= */
.video-header {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.desktop-video {
    display: block;
}

.mobile-video {
    display: none;
}


.after-video-bg {
    background-image: url('../img/bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.overlay-bottom {
    position: absolute;
    bottom: 80px; /* Adjust distance from bottom (above ticker) */
    right: 5px;  /* Align to right side */
    z-index: 5;
}

.play-sound-btn {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.play-sound-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* ==================== Mobile-Specific ======================= */
@media (max-width: 768px) {
    .desktop-video {
        display: none;
    }

    .mobile-video {
        display: block;
    }
}


.desktop-banner {
  display: block;
}

.mobile-banner {
  display: none;
}

@media (max-width: 768px) {
  .desktop-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
  }
}


/* ==================== buttons ======================= */

.btn-primary {
    background-color: #ff4081;
    border-color: #ff4081;
    font-family: 'Cal Sans', sans-serif;
    font-weight: bold;
    border-radius: 8px;
    padding: 12px 20px;
}

.btn-primary:hover {
    background-color: #e73370;
    border-color: #e73370;
}

/* Rounded top corners for the image */
.rounded-top {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

/* Black box with only bottom corners rounded */
.register-box {
    background-color: black;
    padding: 15px 0;
    margin-top: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    width: 100%;
}

.register-boxwhite {
    background-color: white;
    padding: 15px 0;
    margin-top: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    width: 100%;
}


.btn-register {
    background-color: #f47c00;
    border-color: #f47c00;
    color: white;
    font-family: 'Cal Sans', sans-serif;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-register:hover {
    background-color: #d76c00; /* Slightly darker orange for hover effect */
    border-color: #d76c00;
}





/* ==================== Footer ======================= */
.bg-orange {
    background-color: #f47c00 !important;
}

/* ==================== Fonts ======================= */
.bungee-spice-regular {
    font-family: "Bungee Spice", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.cal-sans-regular {
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.cal-sans-bold {
    font-family: "Cal Sans", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.londrina-solid-thin {
    font-family: "Londrina Solid", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.londrina-solid-light {
    font-family: "Londrina Solid", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.londrina-solid-regular {
    font-family: "Londrina Solid", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.londrina-solid-black {
    font-family: "Londrina Solid", sans-serif;
    font-weight: 900;
    font-style: normal;
}

/* ==================== Experience Cards ======================= */

.card2 {
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  border: 5px solid #000; /* Thicker border */
}

.card-body2 {
  flex-grow: 1;
  background: #ffffff;
  padding: 2rem 1rem 1rem;
}

@media (max-width: 768px) {
  .card2 {
    max-width: 95vw; /* Ensure it fits within the viewport */
    margin: 0 auto; /* Center it horizontally */
  }
}

.card {
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  border: 5px solid #000; /* Thicker border */
}

.party-header {
  background-color: #111;
  padding: 1rem 1rem 2rem; /* Extra bottom padding to make space for badge */
  text-align: center;
  position: relative;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.party-title {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.party-title span.orange {
  color: #ff8a00;
}

.party-title span.pink {
  color: red;
}

.subheading-badge {
  background: linear-gradient(135deg, #f47c00, #ff8a00);
  color: black;
  display: inline-block;
  border-radius: 2rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;

  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.card-body {
  flex-grow: 1;
  background: linear-gradient(135deg, #fdf2e9, #ffe0e0);
  padding: 2rem 1rem 1rem;
}

.day-column h6,
.day-column + .col-6 h6 {
  display: inline-block;
  background-color: #f47c00;
  color: white;
  padding: 0.4rem 0.9rem;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.day-column,
.day-column + .col-6 {
  padding: 0.5rem 1rem;
}



.day-column ul,
.day-column + .col-6 ul {
  list-style-type: disc;
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.day-column ul li,
.day-column + .col-6 ul li {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
  line-height: 1.3;
}

.card-footer {
  padding: 1rem;
  background-color: #ff8a00;
  color: black;
  font-weight: bold;
  text-align: center;
  border-top: none;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  box-sizing: border-box;
}

/* Optional: soften shadow so it doesn't look like overflow */
.card.shadow-sm {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  /* Optional: increase gap on mobile by adjusting gutter in Bootstrap or add padding */
  /* You can keep this or remove it */
}




.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 60% 60%;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  top: 45%;
}

/* No more need to hide cards in mobile */



/* ==================== Contact Page ======================= */


 .contact-col {
    border: 1px solid black;
    border-radius: 10px;
    background-color: transparent;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100px;
    box-sizing: border-box;
    width: 100%;
  }

  .contact-col img {
    max-height: 40px;
    object-fit: contain;
    margin-right: 0.75rem;
    flex-shrink: 0;
  }

  .contact-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-title {
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.2;
  }

  .contact-detail {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  @media (max-width: 576px) {
    .contact-col {
      height: auto;
      padding: 0.5rem 0.75rem;
    }

    .contact-title {
      font-size: 0.95rem;
    }

    .contact-detail {
      font-size: 0.85rem;
    }
  }

/* ==================== Submit Button Coloring ======================= */

.custom-red {
  background-color: #e71d2b;
  border-color: #e71d2b;
  color: white; /* Optional, improves contrast */
}

.custom-red:hover {
  background-color: #c51a26;
  border-color: #b01721;
}







.animated-arrow-btn {
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.animated-arrow-btn .arrow-icon {
  font-size: 2rem;
  color: #fff;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.animated-arrow-btn:hover .arrow-icon {
  transform: translate(8px, -50%);
}




.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.5em; /* reserve space for checkmark */
}

.checklist li::before {
  content: '✔';
  color: green;
  position: absolute;
  left: 0;
  top: 0;
}



/* ==================== accordian ======================= */

    .accordion-wrapper {
            background-color: #ffffff;
            border-radius: 15px; /* Rounded corners for the main container */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Soft shadow for the container */
            padding: 30px;
            max-width: 1900px; /* Max width for the accordion content itself */
            width: 100%; /* Ensure it takes full width up to max-width */
            margin-left: auto; /* Center the wrapper within its column */
            margin-right: auto; /* Center the wrapper within its column */
        }

        /* Custom styling for the accordion items */
        .custom-accordion-item {
            border: none; /* Remove default item border */
            margin-bottom: 15px; /* Space between accordion items */
            border-radius: 10px; /* Rounded corners for each item */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); /* Soft shadow for each item */
            overflow: hidden; /* Ensures rounded corners apply correctly */
        }

        .custom-accordion-header {
            background-color: #fd7e14; /* Orange background for headers */
            color: #ffffff; /* White text for headers */
            border: none;
            padding: 0; /* Remove default padding to allow button styling */
        }

        .custom-accordion-button {
            background-color: #fd7e14; /* Orange background for the button */
            color: #ffffff; /* White text for the button */
            font-weight: 600;
            padding: 18px 25px; /* Ample padding for better touch targets */
            width: 100%; /* Make button fill header */
            text-align: left;
            border: none;
            border-radius: 10px; /* Rounded corners matching item */
            transition: all 0.3s ease; /* Smooth transition */
            box-shadow: none !important; /* Remove Bootstrap's default button shadow focus */
            font-size: 1.1rem; /* Slightly larger font size */
        }

        .custom-accordion-button:not(.collapsed) {
            background-color: #e06c00; /* Slightly darker orange when active */
            color: #ffffff;
            border-bottom-left-radius: 0; /* Straight bottom edge when open */
            border-bottom-right-radius: 0;
            box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.2); /* Subtle inner shadow */
        }

        .custom-accordion-button:focus {
            outline: none; /* Remove outline on focus */
            box-shadow: 0 0 0 0.25rem rgba(253, 126, 20, 0.25) !important; /* Custom focus ring */
        }

        .custom-accordion-button::after {
            /* Custom chevron icon */
            filter: brightness(0) invert(1); /* Makes default chevron white */
            background-size: 1.2rem; /* Adjust icon size */
            transition: transform 0.3s ease;
        }

        .custom-accordion-button:not(.collapsed)::after {
            transform: rotate(-180deg);
        }

        .custom-accordion-body {
            padding: 20px 25px;
            background-color: #fff; /* White background for content */
            color: #495057; /* Darker text for content */
            border-top: 1px solid #eee; /* Subtle separator */
            border-bottom-left-radius: 10px; /* Rounded bottom corners */
            border-bottom-right-radius: 10px;
            line-height: 1.6;
        }

        .custom-accordion-body ul {
            padding-left: 20px;
            margin-top: 10px;
        }

        .custom-accordion-body li {
            margin-bottom: 5px;
        }

        /* Responsive adjustments */
        @media (max-width: 576px) {
            .accordion-wrapper {
                padding: 15px; /* Reduce container padding on small screens */
            }
            .custom-accordion-button {
                padding: 15px 20px; /* Adjust button padding on small screens */
                font-size: 1rem;
            }
            .custom-accordion-body {
                padding: 15px 20px; /* Adjust body padding on small screens */
            }
        }


.custom-accordion-header,
.custom-accordion-button {
    background-color: #ffcc01 !important;
    color: black !important;
}

.custom-accordion-button:not(.collapsed) {
    background-color: #e6b801 !important; /* slightly darker yellow when open */
    color: black !important;
}

.custom-accordion-button::after {
    filter: none !important;
}



/* ==================== Explore Mauritius ======================= */

.fun-img-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 4px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(135deg, #f47c00, #ff4081);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.fun-img-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* Ensure images scale properly */
.fun-img-card img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 12px;
}

.hover-title-wrapper {
  position: relative;
  overflow: hidden;
}

.hover-title-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.hover-title {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-weight: bold;
  font-size: 16px;
}

.hover-title-wrapper:hover .hover-title {
  opacity: 1;
}

.sold-out-overlay {
  background-color: rgba(0, 0, 0, 0.0); /* Optional: dark transparent overlay */
  z-index: 10;
  pointer-events: none; /* Let clicks go through if needed */
}

.sold-out-img {
  max-width: 300px;
  opacity: 1.0;
}
