
/* General styles */
body {
    font-family: var(--primary-font), sans-serif;  
    margin: 0;
    padding: 0;
}

p {
    font-family: var(--secondary-font), sans-serif;  
}

h1 {
    font-family: var(--h1-font),  Arial, Lucida, sans-serif;  
}

h2 {
    font-family: var(--h2-font),  Arial, Lucida, sans-serif;  
}

h3 {
    font-family: var(--h3-font),  Arial, Lucida, sans-serif;  
}

h4 {
    font-family: var(--h4-font),  Arial, Lucida, sans-serif;  
}

h5 {
    font-family: var(--h5-font),  Arial, Lucida, sans-serif; 
}

h6 {
    font-family: var(--h6-font),  Arial, Lucida, sans-serif;  
}

a {
    font-family: var(--a-font),  Arial, Lucida, sans-serif; 
}

div {
    font-family: var(--div-font),  Arial, Lucida, sans-serif;  
}

span {
    font-family: var(--span-font),  Arial, Lucida, sans-serif;  
}

ul {
    font-family: var(--ul-font),  Arial, Lucida, sans-serif; 
}

ol {
    font-family: var(--ol-font),  Arial, Lucida, sans-serif;  
}

li {
    font-family: var(--li-font),  Arial, Lucida, sans-serif;  
}

button {
    font-family: var(--button-font),  Arial, Lucida, sans-serif;  
}

input {
    font-family: var(--input-font),  Arial, Lucida, sans-serif;  
}

label {
    font-family: var(--label-font),  Arial, Lucida, sans-serif;  
}

textarea {
    font-family: var(--textarea-font),  Arial, Lucida, sans-serif;  
}

strong {
    font-family: var(--strong-font),  Arial, Lucida, sans-serif;  
}

header {
    font-family: var(--header-font),  Arial, Lucida, sans-serif;  
}

footer {
    font-family: var(--footer-font),  Arial, Lucida, sans-serif;  
}


/* Header styles */
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
transition: background-color 0.3s ease, box-shadow 0.3s ease;
background: var(--primary-color); /* Transparent initially */
padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Add background color after scroll */
header.scrolled {
background: var(--primary-color); /* Your desired solid color */
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

/* Ensure the hero section starts below the header */
.hero {
margin-top: 0; /* Header overlays this */
padding-top: 100px; /* Adjust based on header height */
}


.header-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding-left: 3%;
padding-right: 5%;
}

/* Left menu */
.menu {
    flex: 1;
    display: flex;
    gap: 15px;
}
.menu a {
    text-decoration: none;
    color:var(--highlight-two);
    font-weight: bold;
    font-style: italic;
}

/* Logo (centered) */
.logo {
    flex: 0;
    display: flex;
    justify-content: center;
}

.logo img {
    height: 80px;

}
/* Desktop styles (unchanged) */
@media (min-width: 769px) {
.hamburger {
    display: none; /* Hide the hamburger icon */
}

.mobile-menu {
    display: none; /* Ensure mobile menu is hidden */
}

.menu {
    display: flex; /* Keep desktop menu visible */
}
}

@media (min-width: 769px) AND (max-width: 868px) {
.header-buttons button {
        padding: 10px 20px!important;
        font-size: 18px!important;
    }

    .header-buttons .signup {
        border: var(--highlight-two) 2px solid ;
    }
}

@media (max-width: 768px) {
    header {
        position: sticky; /* Ensures it sticks to the top */
        top: 0;
        background: var(--primary-color); /* Add solid background */
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 0;
    }

    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5% 10% 5% 10%;
    }

    /* Logo positioned to the left */
    .logo {
        order: 1; /* Moves the logo to the first position */
    }

    .logo img {
        height: 80px; /* Smaller logo for mobile */
    }

    /* Hide the desktop menu and show the hamburger menu */
    .menu {
        display: none; /* Hide full menu on mobile */
    }

    .hamburger {
        display: block; /* Show the hamburger icon */
        font-size: 25px;
        color: var(--secondary-color);
        cursor: pointer;
        order: 2; /* Appears to the right of the logo */
    }

    /* Styles for mobile cascading menu */
    .mobile-menu {
        display: none; /* Initially hidden */
        position: absolute;
        top: 60px; /* Adjust to be below the header */
        right: 10px;
        background: var(--primary-color);
        padding: 10px;
        width: calc(100% - 20px); /* Full width minus padding */
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu a {
        display: block;
        padding: 10px;
        color: var(--highlight-two);
        text-decoration: none;
        font-weight: bold;
        font-style: italic;
    }

    .mobile-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Toggle menu visibility */
    .mobile-menu.active {
        display: block;
    }

    /* Hide header buttons on mobile */
    .header-buttons {
        display: none !important; /* Hides buttons for the mobile view */
    }

    .hero {
        padding: 28% 0 33% 0% !important;
    }

    .hero-content {
        padding: 5% !important;
    }
    
   
    
    .hero-content h4 {
        margin: 10% 0% 0% 0% !important;
        font-size: 20px !important;
    }
    
    .countdown-timer {
        margin: 0% !important;
    }
    
    .time-box {
        text-align: center;
    }
    
    
    
    .time-box label {
        font-size: 0.9rem;
        color: var(--highlight-two);
        margin-top: 5px;
        display: block;
    }
    
    .colon {
        font-size: 8vw !important;
        margin: 3% 3% 10% !important;
    }
    
    .time-box {
        text-align: center;
    }
    
    .time-box span {
    font-size: 40px !important;
    }
    
    .time-box label {
        font-size: 3vw !important;
    }
    
    .cta-button {
        font-size: 18px !important;
        line-height: 1em;
        padding-top: 16px !important;
        padding-right: 25px !important;
        padding-bottom: 16px !important;
        padding-left: 25px !important;
        margin-top: 10% !important;
        margin-bottom: 0% !important;
    }
    .sponsor-image {
        max-width: 40px !important;
    }
    

}

/* Right buttons */
.header-buttons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.header-buttons button {
font-weight: 900;
font-style: italic;
text-transform: uppercase;
line-height: 1em;
    background: transparent; /* Matches $siteColours['secondary'] */
    color: var(--highlight-two);
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    font-size: 20px;
}

.header-buttons .signup {
    border: var(--highlight-two) 3px solid ;
}

    

 footer {
    background: var(--primary-color) !important; /* Matches $siteColours['primary'] */
    padding: 10px;
    text-align: center;
    color: var(--highlight-two) !important;
}

header nav a {
    margin: 0 10px;
    color: var(--highlight-two);
    text-decoration: none;
}

.hero {
    background-image: linear-gradient(180deg, rgba(119, 169, 255, 0.6) 0%, rgba(33, 113, 250, 0.75) 100%), url(img/jonny-gios-O8vzugnyy3A-unsplash.jpg) !important;
    background-size: cover;
    color: var(--highlight-two);
    padding: 50px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 0, 54, 0.6); /* Matches backgroundHeroOverlayColour */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 5%;
}

.hero-content h1 {
    margin: 0;
    padding-top: 7%;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    font-size: 3.5vw;
    color: var(--highlight-two) !important;
    text-align: center;
    text-shadow: 0em 0.1em 0.1em rgba(0, 0, 0, 2.4);
}

.hero-content h4 {
    color: var(--secondary-color);
    margin: 20px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    text-decoration-style: wavy;
    -webkit-text-decoration-color: var(--secondary-color);
    text-decoration-color: var(--secondary-color);
    font-size: 24px;
    text-align: center;
    text-shadow: 0em 0.1em 0.1em rgba(0, 0, 0, 0.4);
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    margin: 15px;
}

.time-box {
    text-align: center;
}


.time-box label {
    font-size: 0.9rem;
    color: var(--highlight-two);
    margin-top: 5px;
    display: block;
}

.colon {
    font-size: 50px;
font-weight: bold;
margin: 0px 40px 26px;
}

.time-box {
    text-align: center;
}

.time-box span {
font-weight: 900 !important;
font-size: 3.5vw ;
    display: block;
}

.time-box label {
    margin-top: 5px;
    color: var(--highlight-two);
    font-size: 14px;
    padding-bottom: 2%;
    font-weight: 400;
}

.cta-button {

font-weight: 900;
font-style: italic;
text-transform: uppercase;
font-size: 24px;
line-height: 1em;
background-color: var(--secondary-color);
border-radius: 12px;
overflow: hidden;
padding-top: 18px ;
padding-right: 30px ;
padding-bottom: 18px ;
padding-left: 30px ;
margin-right: auto !important;
margin-left: auto !important;
width: fit-content;    
    color: var(--highlight-two);
    margin-top: 20px;
    cursor: pointer;
    border: 0;
    margin-bottom: 3%;
}
.cta1-button {

font-weight: 900;
font-style: italic;
text-transform: uppercase;
font-size: 20px;
line-height: 1em;
background-color: var(--primary-color);
border-radius: 12px;
overflow: hidden;
padding-top: 16px !important;
padding-right: 30px !important;
padding-bottom: 16px !important;
padding-left: 30px !important;
margin-right: auto !important;
margin-left: auto !important;
width: fit-content;    
    color: var(--highlight-two);
    margin-top: 20px;
    cursor: pointer;
    border: 0;
    margin-bottom: 3%;
    cursor: pointer;
}


/* Block 1 Styling */
.block1 {
    padding: 4%;
    background: var(--highlight-two);
}

.block1-container {
    display: flex;
    align-items: center;
}

.text-content {
    flex: 1;
    text-align: left;
    padding-left: 6%;
}

.text-content h2 {
    margin: 0;
    font-weight: 800;
font-style: italic;
text-transform: uppercase;
font-size: 2.5vw;
    color: var(--primary-color); /* Matches $siteColours['secondary'] */
}

.text-content h3 {
    font-weight: 700;
font-style: italic;
text-transform: uppercase;
font-size: 28px;
color: var(--secondary-color) !important;
margin: 0;    }

.text-content p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 5px;
}

.image-content {
    flex: 1;
    padding-right: 6%;
    text-align: center;
}

.image-content img {
    max-width: 75%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background-color: transparent;
    color: var(--highlight-two);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    font-size: 35px;
    font-weight: 900;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}



/* Dots */
.dots {
    text-align: center;
}

.dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 5px;
    background-color: var(--highlight-two);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--primary-color);
}
/* Block 1 Responsive Layout */
@media (max-width: 768px) {
.hero-content h1 {
    margin: 0;
    padding-top: 2%;
    font-size: 38px;
}
    .block1-container {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        padding: 10% 5% 5% 5%;
    margin-bottom: 20px;
    text-align: left;
    }

    .text-content h2 {
        font-size: 36px;
    }
    .text-content h3 {
        font-size: 16px;
        margin: 0;
    }
    .text-content p {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .carousel-item h4 {
        font-size: 22px!important;
        color: var(--highlight-two);
        margin-bottom: 10px;
    }
    .carousel-item p {
        font-size: 14px!important;
        color: var(--highlight-two);
    }
    .image-content {
        padding-bottom: 10%;
        padding-right: 0;
    }

    .slideshow-container {
        max-width: 100%; /* Allow the slideshow to stretch fully */
    }

    .prev, .next {
        display: none;
    }

    .dots {
        margin-top: 10px;
    }
    .dot {
        width: 15px;
        height: 15px;
        margin: 0 5px;
    }
}


.carousel-section {
    background: var(--highlight-two);
    padding-left: 6%;
}

.carousel-titles {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 3%; /* Add padding for spacing */
}

.carousel-titles h2 {
    margin: 0;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    font-size: 3.5vw;
    color: var(--primary-color);
}

.carousel-titles h3 {
    margin: 0;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    font-size: 1.5vw;
    color: var(--secondary-color) !important;
}

/* Carousel Controls */
.carousel-controls {
    display: inline-flex;
        gap: 10px;
        align-items: center;
        position: absolute;
        /* flex-wrap: wrap; */
        left: 80%;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--highlight-two);
    border: none;
    border-radius: 5px; /* Slight rounding for modern style */
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-arrow:hover {
    background-color: var(--secondary-color);
}
/* Carousel Wrapper and Items */
.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1% 1% 3% 3%;
    scrollbar-width: none;
}

.carousel-item {
    position: relative;
    min-width: 30%;
    background-size: cover;
    background-position: center;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex-shrink: 0;
}

.carousel-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 37, 0.9), rgba(0, 0, 139, 0));
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.carousel-item h4 {
    font-size: 1.2rem;
    color: var(--highlight-two);
    margin-bottom: 10px;
    font-style: italic;
}

.carousel-item p {
    font-size: 1rem;
    color: var(--highlight-two);
}
/* Carousel Arrows */
.carousel-arrow {
    transform: translateY(-100%);
background-color: var(--secondary-color);
color: var(--highlight-two);
border: none;
border-radius: 20%;
width: 50px;
height: 50px;
cursor: pointer;
z-index: 10;
font-size: 40px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
}

.carousel-arrow:hover {
    background-color: rgba(5, 23, 54, 0.9);
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

/* Mobile View */
@media (max-width: 768px) {
    .carousel-item {
        min-width: 80%; /* Show 1 item on mobile */
        height: 400px;
    }
    .carousel-titles h2 {
        margin: 0;
        font-size: 36px;
    }
    .carousel-titles h3 {
        margin: 0;
        font-size: 20px;
    }
    .carousel-titles {
        flex-direction: column;
        align-items: flex-start;
    }

    .carousel-controls {
        display: none;
    }
    .carousel {
        gap: 10px;
        padding: 1% 5% 25% 3%;
    }
    .intro-text h2 {
        margin: 0 !important;
        font-weight: 800;
        font-size: 30px !important;
        padding-top: 5%;
    }
    .intro-text h3 {
        font-size: 30px;
        line-height: 1;
    }
    .intro-text p {
        font-size: 14px !important;
        line-height: 1.2;
        padding: 3% 2% 10% 2% !important;
        font-weight: 400;
        line-height: 1.7em !important;
    }
    .packages-buttons {
        margin: 20px auto;
        gap: 15px;
    }
    .toggle-btn {
        padding: 15px 41px !important;
        font-weight: 700 !important;
        font-size: 16px !important;
    }
    
    .toggle-btn.active {
        background-color: var(--primary-color);
        color: var(--highlight-two);
        opacity: 1; /* Full opacity for the active button */
    }
    .sponsors {
        background-color: var(--secondary-color);
        display: flex;
        justify-content: space-around;
        padding: 4%!important;
    }
}


/* Center Buttons at the Top */
.packages-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    gap: 10px;
    text-align: center;
}

/* Packages Container Styling */
.packages-container {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

/* Toggle Button Styling */
.toggle-btn {
    padding: 13px 41px;
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--highlight-two);
    border-radius: 10px;
    font-weight: 400;
    font-size: 19px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6; /* Default lower opacity for inactive buttons */
}

.toggle-btn.active {
    background-color: var(--primary-color);
    color: var(--highlight-two);
    opacity: 1; /* Full opacity for the active button */
}

.toggle-btn:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
    opacity: 1; /* Full opacity on hover */
}


  /* Default styling for packages container */
.packages {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0%;
    overflow: hidden; /* Hide items outside the visible area */
}

/* Package Container */
.package {
    position: relative;
    border: 2px solid var(--primary-color); /* Border color */
    padding: 1% 2% 3% 1%;
    text-align: left;
    width: 18%; /* Fixed width for better control */
    height: 350px; /* Height of the "ticket" */
    background-color: var(--primary-color);
    border-radius: 15px; /* Rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Dotted line */
.package hr {
    border: none;
    border-top: 4px dotted var(--secondary-color); /* Dotted line */
    width: 100%;
    position: absolute;
    top: 60%;
    z-index: 0;
    margin:0;

}

/* Cutting edge (circle) effect */
.package::before, .package::after {
    content: '';
    position: absolute;
    width: 70px; /* Size of the circle */
    height: 70px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    z-index: 1;
}

.package::before {
    top: 60%;
    left: -37px; /* Position on the left side, half the width to center it */
    transform: translateY(-50%); /* Center vertically */
}

.package::after {
    top: 60%;
    right: -37px; /* Position on the right side, half the width to center it */
    transform: translateY(-50%); /* Center vertically */
}


/* Title Styling */
.package h2 {
    text-transform: uppercase;
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 800;
    margin: 0;
}

/* Price Styling */
.package .price {
    font-size: 40px;
    font-weight: 800;
    color: var(--highlight-two);
    margin: 0;
}
.package .includes , .package span {
    font-size: 16px;
    color: var(--highlight-two);
    margin: 0;
    font-weight: 600;
}
/* Button Styling */
.package button {
    background-color: var(--primary-color);
    padding: 10px 20px;
    border: 0;
    border-radius: 25px; /* Rounded button */
font-weight: 900;
font-style: italic;
text-transform: uppercase;
font-size: 24px;
color: var(--highlight-two) !important;
transition: color 300ms ease 0ms;
position: absolute;
left: 0;
top: 80%;
width: 100%;
cursor: pointer;
}
@media (min-width: 769px) and (max-width: 1178px) {
.hero-content h1 {
    font-size: 48px;
}
.sponsors {
    background-color: var(--secondary-color);
    display: flex
;
    justify-content: space-around;
    padding: 3%;
}
.packages {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px; /* Space between items */
    padding: 20px;
}

.package {
    width: auto; /* Allow flexibility */
    height: auto; /* Adjust height dynamically */
    padding: 4% 0% 40% 4%;
}

/* Adjust title, price, and other styles for better appearance */
.package h2 {
    font-size: 32px;
}

.package .price {
    font-size: 24px;
}

.package .includes {
    font-size: 14px;
}

.package button {
    font-size: 20px;
    padding: 10px 15px;
}
}


/* Slideshow-specific styles for mobile */
@media (max-width: 768px) {
    .mostly-customized-scrollbar {
                    /* display: block; */
    /* width: 10em; */
    overflow: auto;
    /* height: 2em; */
    padding: 1em;
    margin: 1em auto;
    /* outline: 2px dashed cornflowerblue; */
          }
          
          /* Demonstrate a "mostly customized" scrollbar
           * (won't be visible otherwise if width/height is specified) */
          .mostly-customized-scrollbar::-webkit-scrollbar {
            width: 6px;
            height: 8px;
            background-color: #616691; /* or add it to the track */
            border-radius: 5%;
          }
          
          /* Add a thumb */
          .mostly-customized-scrollbar::-webkit-scrollbar-thumb {
            background: var(--highlight-one);
            border-radius: 5%;
          }
          /* Cutting edge (circle) effect */
.package::before, .package::after {
    content: '';
    position: absolute;
    width: 60px; /* Size of the circle */
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    z-index: 1;
}

.package::before {
    top: 70%;
    left: -37px; /* Position on the left side, half the width to center it */
    transform: translateY(-50%); /* Center vertically */
}

.package::after {
    top: 70%;
    right: -37px; /* Position on the right side, half the width to center it */
    transform: translateY(-50%); /* Center vertically */
}
    .packages {
            flex-wrap: nowrap;
            scroll-snap-type: x mandatory;
            overflow-x: auto;
            transition: transform 0.3s ease-in-out;
            gap: 12px;
            padding: 0% 8% 10% 2%;
            margin-top: 10%;
            justify-content: normal;
    }

    .package {
        flex: 0 0 100%;
    scroll-snap-align: center;
    padding: 2% 1% 30% 1% !important;
    height: 300px;
    }
/* Title Styling */
.package h2 {
    text-transform: uppercase;
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 800;
    margin: 0;
    margin-left: 5%;
}
.package hr {
    width: 100%;
    top: calc(70% - 3px);
    position: absolute;
}
/* Price Styling */
.package .price {
    font-size: 40px;
    font-weight: 800;
    color: var(--highlight-two);
    margin: 0;
    margin-bottom: 6%;
    margin-left: 5%;
}
.package .includes  {
    font-size: 14px;
    color: var(--highlight-two);
    margin: 0;
    margin-left: 5%;
    font-weight: 600;
}
 .package span {
    font-size: 14px;
    color: var(--highlight-two);
    margin: 0;
    font-weight: 600;
}
/* Button Styling */
.package button {
    padding: 0;
    
}
    .packages-slider {
        position: relative;
    }

    .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.8);
            color: var(--primary-color);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 24px;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: background 0.3s ease, transform 0.3s ease;
        }
        
        .slider-btn:hover {
            background: var(--primary-color);
            color: var(--highlight-two);
            transform: scale(1.1);
        }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }
    .mission-statement h1 {
        font-size: 43px !important;
        text-align: center;
        margin: 0;
        margin-top: 5% !important;
    }
    .mission-statement {
        padding: 25px 18px !important;
    margin-bottom: 0px !important;
    }
    .halfbluewhite {
        background: linear-gradient(to bottom, var(--secondary-color) 53%, var(--highlight-two) 47%) !important;
    }
    .newsletter p {
        font-size: 1.1rem!important;
        margin-bottom: 15px;
        font-weight: bold;
        font-style: italic;
    }
    .newsletter {
        padding: 0% 10% 0% 10%;
    }
}

/* Intro Text Styling */
.intro-text {
    text-align: center;
    margin-bottom: 30px;
    border-radius: 15px; /* Rounded corners */
    
}

.intro-text hr {
    border: none; /* Remove the default border */
    border-top: 2px solid rgba(255, 255, 255, 0.5); /* Semi-transparent white */
    width: 80%; /* Adjust the width */
    border-radius: 5px; /* Rounded edges for a smooth look */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add a subtle shadow for depth */
}


.intro-text h2 {
    margin: 0 !important;
    font-weight: 800;
font-style: italic;
text-transform: uppercase;
font-size: 3.5vw;
    color: var(--primary-color);
    font-weight: bold;
}

.intro-text h3 {
    font-size: 2rem;
color: var(--highlight-two);
margin: 0 !important;
font-style: italic;
text-transform: uppercase;
}

.intro-text p {
    font-size: 17px;
    color: var(--highlight-one);
    line-height: 1.2;
    max-width: 900px;
    margin: 1% auto;
    padding-bottom: 2%;
    font-weight: 400;
}
.sponsors {
    background-color: var(--secondary-color) ;
    display: flex;
    justify-content: space-around;
    padding: 1%;
}

.sponsor-image {
    max-width: 70px;
}
/* Mission Statement Section Styling */
.mission-statement {
    text-align: center;
    padding: 50px 20px;
    
    margin-bottom: 30px;
    border-radius: 15px;
    
}
.mission-statement h1 {
font-style: italic;
text-transform: uppercase;
font-size: 3vw;
color: var(--highlight-two) !important;
text-align: center;
margin: 0;
}
.mission-statement h2 {
    font-style: italic;
    text-transform: uppercase;
    font-size: 40px;
    text-align: center;
    color: var(--primary-color);
    font-weight: bold;
    margin: 0;
}

.mission-statement p {
    font-size: 1.2rem;
    color: var(--highlight-one);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Video Container Styling */
.video-container {
    margin-top: 30px;
    text-align: center;
}

.asset-image {
    margin-top: 30px;
    text-align: center;
}

.asset-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-statement h2 {
        font-size: 26px; /* Adjust font size for mobile */
        line-height: 1;
    }

    .mission-statement p {
        font-size: 1rem;
    }

    .video-container iframe {
        width: 100%;
        height: 46vw;
    }
}

/* Footer Styling */
footer {
    background-color: var(--highlight-two);
    padding: 40px 20px;
    text-align: center;
    color: var(--primary-color);
}

/* Footer Container Layout */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1500px;
    margin: 0 auto;
}

/* Left and Right Sections */
.footer-left,
.footer-right {
    width: 25%;
    text-align: left;
}

.footer-right {
    text-align: right;
}

/* Middle Section */
.footer-middle {
    width: 50%;
    text-align: center;
}

/* Section Titles (Quick Links & Policies) */
.section-title {
    color: var(--secondary-color);
font-style: italic;
font-size: 20px;
margin-bottom: 10px;
font-weight: 600;
text-transform: uppercase;
}

.footer-left ul, .footer-right ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-left li, .footer-right li {
    margin-bottom: 10px;
}

/* Links */
.footer-left a,
.footer-right a {
    text-decoration: none;
    color: var(--highlight-two);
    font-size: 19px;
}

.footer-left a:hover,
.footer-right a:hover {
color: var(--secondary-color);
}

/* Logo */
.footer-middle .logo img {
margin-bottom: 20px;
height: 80px;

}

.newsletter p {
    font-size: 1.4rem; /* Bigger text */
    margin-bottom: 15px;
    font-weight: bold;
    font-style: italic;
}

/* Newsletter Form Styling */
.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color); /* Dark blue background */
    
}

.newsletter-form input {
    padding: 15px;
font-size: 1rem;
width: 90%;
border: 5px solid var(--highlight-two);
border-radius: 25px 0 0 25px;
color: var(--highlight-one);
background-color: var(--primary-color);
outline: none;
}

.newsletter-form button {
    padding: 15px 20px;
font-size: 1rem;
background-color: var(--secondary-color);
color: var(--highlight-two);
border: 5px solid var(--highlight-two);
border-radius: 0 25px 25px 0;
cursor: pointer;
font-weight: bold;
font-style: italic;
border-left: none;
}

.newsletter-form button:hover {
    background-color: var(--primary-color); /* Darker blue on hover */
    color: var(--highlight-two);
}
/* Powered By Section */
.powered-logo {
    margin-top: 30px;
    max-width: 120px;
}

.powered-text {
    font-size: 20px;
font-weight: bold;
margin-top: 10px;
color: var(--highlight-two);
font-style: italic;
}
/* Bottom Copyright Text */
footer p {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--highlight-two);
}
footer a {

    color: var(--highlight-two);
}

/* Responsive Design */
@media (max-width: 768px) {

.footer-container {
    flex-direction: column;
    align-items: center;
}

.footer-middle {
    order: 1; /* Show this section first */
    width: 100%;
}

.footer-left {
    order: 2; /* Show this section second */
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    padding-left: 10%;
}

.footer-right {
    order: 3; /* Show this section third */
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    padding-left: 10%;
}

.newsletter-form {
    flex-direction: column;
    margin-bottom: 5%;
}

.newsletter-form input {
    width: 100%;
    margin-bottom: 10px;
    border: 3px solid var(--highlight-two) !important;
    border-radius: 0%;
    background: var(--highlight-two);
    margin: 4% 2% 12% 2%;
}

.newsletter-form button {
    border-radius: 0px;
    border: 0;
    background-color: #4e4e4e;
}

.footer-left a, .footer-right a {
    text-decoration: none;
    color: var(--highlight-two);
    font-size: 18px;
}
}

.halfbluewhite {
    background: linear-gradient(to bottom, var(--secondary-color) 50%, var(--highlight-two) 50%);
    padding: 20px; /* Adjust as needed */
}
/* Block 1 Styling */
.block3 {
    padding-left: 10%;
padding-right: 10%;
    background: var(--highlight-two);
    padding-bottom: 5%;
}

.block3-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.block3 .text-content {
    flex: 1;
    text-align: left;
    padding-left: 7%;
}

.block3 .text-content h2 {
    font-weight: 800;
font-style: italic;
text-transform: uppercase;
font-size: 2.5vw;
    color: var(--primary-color); /* Matches $siteColours['secondary'] */
    margin-bottom: 10px;
}

.block3 .text-content h3 {
    font-weight: 700;
font-style: italic;
text-transform: uppercase;
font-size: 28px;
color: var(--secondary-color) !important;
    margin-bottom: 20px;
    margin: 0;
}

.block3 .text-content p {
    font-style: normal;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 5px;
    color: rgb(32, 32, 32);
    margin: 1% auto;
    padding-bottom: 2%;
}

.block3 .image-content {
    flex: 1;
    padding-right: 5%;
}

.block3 .image-content img {
    max-width: 90%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .block3-container {
        flex-direction: column; /* Stacks elements vertically */
    }

    .block3 .image-content {
        padding-right: 0; /* Removes right padding for better fit */
        margin-bottom: 5px; /* Adds spacing between image and text */
    }

    .block3 .text-content {
        padding-left: 0; /* Removes left padding for better fit */
        text-align: left; /* Center aligns text for better aesthetics on small screens */
        line-height: 30px;
    }
    .block3 {
        padding-left: 5%;
        padding-right: 7%;
        background: var(--highlight-two);
        padding-bottom: 5%;
    }
    .block3 .text-content h2{
        font-size: 36px;
    margin: 0;
    line-height: 1;
    }
    
    .block3 .text-content h3 {
        font-size: 16px; /* Adjusts font size relative to screen width */
        margin-bottom: 10%;
    }
    .block3 .text-content p {
        font-size: 14px;
        color: #3f3737;
    }

    .block3 .image-content img {
        max-width: 100%; /* Ensures the image fits the screen width */
    }
}
        main {
                background-color: #f5f5f5; /* Light grey background */
                padding: 30px; /* Add spacing inside the main section */
                border-radius: 10px; /* Subtle rounded corners */
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Slight shadow for depth */
                max-width: 1000px; /* Limit the width for readability */
                margin: 120px auto; /* Center the section horizontally */
                color: #333; /* Neutral grey for text */
                font-family: Arial, sans-serif; /* Simple, readable font */
                line-height: 1.6; /* Space out lines for better readability */
            }
            
            /* Heading Styles */
            main h1 {
                font-size: 32px;
                font-weight: bold;
                color: #444; /* Slightly darker grey for emphasis */
                text-align: center;
                margin-bottom: 20px;
            }
            
            main h2 {
                font-size: 24px;
                color: #555; /* Slightly lighter grey for subheadings */
                margin-top: 20px;
            }
            
            main p {
                font-size: 16px;
                color: #666; /* Standard grey for body text */
                margin: 10px 0;
            }

            /* General Styling for Main Content */
main.two-column {
        padding: 40px;
        background-color: #f7f7f7;
        color: #333;
        font-family: Arial, sans-serif;
    }
    
    /* Container for Contact Us Section */
    .two-column .contact-container {
        display: flex;
        gap: 20px;
        margin-top: 20px;
        flex-wrap: wrap;
    }
    
    /* Left Column Styling */
    .two-column .contact-info {
        flex: 1;
        min-width: 300px;
    }
    
    .two-column .contact-info h2 {
        font-size: 24px;
        margin-bottom: 10px;
        color: var(--primary-color);
    }
    
    .two-column .contact-info p {
        font-size: 16px;
        margin-bottom: 10px;
        line-height: 1.6;
    }
    
    .two-column .contact-info a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: bold;
    }
    
    .two-column .contact-info a:hover {
        text-decoration: underline;
    }
    
    /* Right Column Styling */
    .two-column .contact-map {
        flex: 1;
        min-width: 300px;
        text-align: center;
    }
    
    .two-column .contact-map img {
        max-width: 100%;
        border: 1px solid #ddd;
        border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .two-column .contact-map img:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    /* General styles for the button and the banner */
/* Lock scrolling */
body.lock-scroll {
    overflow: hidden;
}

/* Full-page overlay */
#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

/* Cookie banner */
#ccc {

}

#ccc a{
    text-decoration: none;
}
#ccc a:hover{
    color: var(--primary-color);
}
.ccc-button-left {
  position: fixed;
    bottom: -22px;
    left:-1px;
    padding: 0px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 20%;
    z-index: 1000;
}

.ccc-slide-left {
  position: fixed;
  top: 0;
  width: 300px;
  height: 100%;
  background-color: var(--secondary-color);
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 9999;
  overflow-x: scroll;
}

.ccc-slide-left.open {
  left: 0; /* Slide in when active */
}

#ccc-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

#ccc-title {
  font-size: 18px;
}

#ccc-button-holder {
  margin-top: 20px;
}

.ccc-button {
  background-color: var(--primary-color);
  color: var(--highlight-two);
  border: none;
  padding: 10px;
  cursor: pointer;
  margin-top: 10px;
  width: 100%;
  font-weight:600;
  font-size:14px;
}

.ccc-button:hover {
  background-color: var(--highlight-one);
}

.checkbox-toggle {
  display: flex;
  align-items: center;
}

.checkbox-toggle input {
  margin-right: 10px;
}

.checkbox-toggle-on,
.checkbox-toggle-off {
  margin-right: 5px;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--highlight-two);
  border-radius: 22px;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(18px);
}
#ccc-end{
padding-bottom: 30px;
}   
#ccc-close:hover{
    color: var(--highlight-one);
}
.h-captcha{
 
 margin: 20px 0 0 0;   
}

            