/* Header */
.header {
    background-color: #333;
    padding: 20px;
}

.logo-wrapper {
    position: relative;
}

.logo-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: -1;
    border-radius: 10px;
}

.nav-link {
    font-size: 1.1rem;
}

/* Carousel */
.carousel-frame {
    border: 2px solid #007bff;
    border-radius: 8px;
    overflow: hidden;
}

.carousel-container {
    max-height: 600px;
    overflow: hidden;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    color: #007bff;
}

/* Accordion */
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.active, .accordion:hover {
    background-color: #ccc;
}

/* Category */
.category {
    background-color: #1a53ff;
    padding: 15px;
    margin: 10px 0;
    border-radius: 15px;
    cursor: pointer;
}

.subcategory {
    display: none;
}

/* Sticky */
.sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* FAQ */
.faq-header {
    background-color: #007bff;
    color: white;
}

.faq-header.collapsed {
    color: white;
}

.white-text {
    color: white;
}

.white-text:hover {
    font-weight: bold;
    color: white;
}

/* Payment Link */
#redirect-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    background-color: #007bff;
    padding: 5px;
    box-sizing: border-box;
    flex-wrap: wrap; /* Added wrap for smaller screens */
}

#payment-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    color: #ffffff;
    background-color: #28a745;
    border-radius: 5px;
    text-decoration: none;
    width: 100px;
    margin-right: 10px;
}

.redirect-text {
    font-size: 18px;
    color: #ffffff;
    text-align: left;
    flex: 1;
}

/* Media Queries */
@media (max-width: 600px) {
    #payment-link, .redirect-text {
        width: 100%; /* Full width on smaller screens */
        margin-right: 0; /* No right margin on smaller screens */
    }

    #payment-link {
        margin-bottom: 10px;
    }
}

/* Welcome Text */
.large-welcome {
  font-size: 25px;
}

.intro-text {
  margin-bottom: 20px; 
  text-align: center;
}

.intro-text h1 {
  font-size: 1.8rem;
  color: white;
  font-weight: bold;
}

.intro-text p {
  font-size: 1.2rem;
  color: white;
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background: #007bff;
  padding: 20px;
  border-radius: 5px;
  width: 80%;
  max-width: 500px;
  text-align: center;
}

#cookie-settings-icon {
  position: fixed;
  bottom: 70px;
  right: 10px;
  font-size: 3em;  /* Adjust size as needed */
  cursor: pointer;
}

#cookie-banner button {
  background-color: #28a745;
}

#cookie-banner h4 {
	font-weight: bold;
}

#cookie-banner a {
  color: white;
  font-weight: bold; 
  text-decoration: none;
}

#cookie-banner a:visited {
  color: white;
}

#cookie-banner p {
  margin-top: 10px;
}

#essential-cookies-switch:checked ~ .custom-control-label::before {
    background-color: #28a745 !important;
}

/* Modal */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  z-index: 10000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.modal h5 {
	font-weight: bold;
}

.modal h6:first-of-type {
  margin-top: 20px;  /* Adjust the value as needed */
}

.modal-content {
  padding: 20px;
  background: #007bff;
  border-radius: 5px;
}

.modal .btn {
	background-color: #28a745;
}

.custom-control-input:checked~.custom-control-label::before {
    background-color: #28a745;
}

/* CSS for making the essential label text bold and white */
.custom-label-essential {
  color: white !important;
  font-weight: bold;
}

/* General */
body {
    background-color: #97be0d;
    color: white;
    font-family: Arial, sans-serif;
}

h2 {
    font-weight: bold;
}

.card-header {
    background-color: #007bff;
    color: white;
}

.panel {
    padding: 0 18px;
    background-color: #007bff;
    color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
