*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@font-face {
    font-family: 'OpenSans';
    src: url('./fonts/OpenSans-VariableFont_wdth,wght.ttf') format('truetype');
}
@font-face {
    font-family: "Rajdhani";
    font-weight: normal;
    src: url("./fonts/Rajdhani-Regular.ttf");
}

@font-face {
    font-family: 'Outfit';
    src: url('./fonts/Outfit-VariableFont_wght.ttf') format('truetype');
}

body {
    margin: 0px;
    background-color: #121212;
}

a {
    text-decoration: none;
}

.TopImage img {
    display: none;
}

.TopImage {
    position: absolute;
    width: 100%;
    height: 75vh; /* Adjust as needed */
    max-height: 825px; /* Adjust as needed */
    object-fit: cover;
    object-position: center;
    box-shadow: 20px 20px 60px #000000, -20px -20px 60px #000000;
}

.TopImage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,#000 0,transparent 70%),linear-gradient(135deg,#000,transparent 40%);
}

.blur-load, .blur-load2 {
    height: 100%;
    background-size: cover;
    background-position: center;
}

.blur-load::before, .blur-load2::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background-color: var(--text-color);
    filter: blur(4px);
}

.blur-load.loaded::before, .blur-load2.loaded::before {
    animation: none;
    content: none;
    display: none;
}

.blur-load.loaded, .blur-load2.loaded {
    display: none;
}

.TopImage img.loaded {
    display: block;
    z-index: -1;
}

.background-2 img.loaded {
    display: block;
    z-index: -1;
}
  
/* .blur-load.loaded img {
    z-index: -1;
    opacity: 1;
} */

.ImageContent {
    height: 75vh;
    max-height: 825px;
    width: 100%;
}

.LogoImage img {
    height: 75px;
}

.NavMenu{
    position: absolute;
    display: flex;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 20px;
    justify-content: center;
}
.NavMenu div:not(:last-child) {
    margin-right: 7em;
}

.NavLinks {
    display: flex;
    text-align: center;
    align-items: center;
}

.NavLinks a:not(:last-child) {
    margin-right: 1.5em;
}

.link{
    color: white;
    font-size: 20px;
    font-family: 'Outfit',sans-serif;
    transition: color 0.4s ease;
    width: max-content;
}

.link:hover {
    color: #f5a111;
}

.textbox {
    position: relative;
    color: white;
    font-family: 'OpenSans',sans-serif;
}

.textbox h2 {
    position: absolute;
    top: 240px;
    left: 500px;
    text-shadow: 2px 2px 4px #000000;
}

.FirstContainer {
    position: relative;
    height: max-content;
    background-size: cover;
    background-position: center;
    /* height: 1200px; */
    padding: 0 7em 0 7em;
}

.background-1 {
    background: radial-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.25));
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.background-2 {
    /* content: ""; */
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
    object-position: center;
}

.inner-container{
    position: relative;
    padding: 35px 0 35px 0;
    color: white;
}

.SecondContainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,#00000088 0,transparent 26%);
}

.SecondContainer {
    position: relative;
    padding: 5em 5em 7em 5em;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.inner-container2{
    position: relative;
    padding: 35px 0 60px 0;
}

.contain2 {
    font-family: 'Outfit' , sans-serif;
    color: white;
    display: flex;
    width: 80%;
    max-width: 1600px;
}

.contain2 div:not(:last-child) {
    margin-right: 5em;
}

.inner-container h1{
    font-size: 2.2rem;
    font-family: 'Outfit' , sans-serif;
}

.inner-container p{
    font-size: 19px;
    font-family: 'Outfit' , sans-serif;
    margin-bottom: 1.25em;
}

.inner-container2 h1{
    font-size: 40px;
    font-family: 'Outfit' , sans-serif;
}

.inner-container2 p{
    font-size: 19px;
    font-family: 'Outfit' , sans-serif;
    margin-bottom: 1.25em;
}

.contain {
    display: flex;
    padding-top: 50px;
    padding-bottom: 50px;
    margin: 0 auto;
    width: 90%;
    max-width: 1600px;
    text-align: left;
}

.contain div:not(:last-child) {
    margin-right: 2em;
}

.image-container img {
    max-width: 60%;
    min-width: 330px;
    margin: 0 auto 50px auto;
    border-radius: 7.5px;
}

.image-container2 img{
    width: 30vw;
    max-width: 525px;
    height: 375px;
    object-fit: cover;
    border-radius: 7.5px;
}
.image-container2 {
    margin: auto 0;
    display: block;
}

.image-container {
    display: flex;
    align-items: center;
}

.hidden { 
    opacity: 0; 
    transition: opacity 2.5s;
}
.show { 
    opacity: 1; 
}
.hidden2 { 
    opacity: 0; 
    filter: blur(5px);
    transform: translate(-10%);
    transition: all 2s;
}
.show2 { 
    opacity: 1; 
    filter: blur(0);
    transform: translate(0);
}
.hidden3 { 
    opacity: 0; 
    filter: blur(5px);
    transform: translateY(100%);
    transition: all 1s;
}
.show3 { 
    opacity: 1; 
    filter: blur(0);
    transform: translateY(0);
}

.btn {
    color: #fff;
    --color: #fff;
    padding: 0.8em 1.7em;
    background-color: transparent;
    border-radius: .3em;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: 0.7s;
    font-weight: 400;
    font-size: 17px;
    border: 1px solid;
    font-family: 'Outfit';
    text-transform: uppercase;
    text-align: center;
    color: var(--color);
    z-index: 1;
    position: absolute;
    right: 0;
    bottom: 0;
}
   
.btn::before, .btn::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--color);
    transition: 1s ease;
}
   
.btn::before {
    top: -1em;
    left: -1em;
}
   
.btn::after {
    left: calc(100% + 1em);
    top: calc(100% + 1em);
}
   
.btn:hover::before, .btn:hover::after {
    height: 410px;
    width: 410px;
}
   
.btn:hover {
    color: rgb(10, 25, 30);
}

.UpcomingEvents {
    background: linear-gradient(180deg, #00000088 0%, transparent 50%); /* Matches the gradient from above */
    padding: 5em 2em;
    text-align: center;
    position: relative;
    color: #ffffff; /* White text for contrast */
}

.UpcomingEvents h1 {
    font-family: "Outfit", sans-serif;
    font-size: 38px;
    color: #ffffff; /* White text for the heading */
    margin-bottom: 1.5em;
}

.UpcomingEvents .events {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    flex-direction: row; /* Horizontal layout by default */
}

.UpcomingEvents .event {
    background-color: #1e1e1e; /* Slightly darker card background */
    padding: 1.5em;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    text-align: left;
    flex: 1 1 calc(33.33% - 2em); /* Default width for 3 events per row */
    min-width: 400px;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.UpcomingEvents .event:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

.UpcomingEvents .event h2 {
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    color: #f5a111;
    margin-bottom: 0.5em;
}

.UpcomingEvents .event p {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    color: #b9bbbe; /* Light gray for descriptions */
}

.UpcomingEvents .event img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    margin-bottom: 1em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for images */
}

.UpcomingEvents .event a {
    text-decoration: none;
    color: #7289da; 
    transition: color 0.3s ease;
}

.UpcomingEvents .event a:hover {
    color: #99aab5; 
}

/* Medium screens (tablets) */
@media (max-width: 768px) {
    .UpcomingEvents .events {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .UpcomingEvents .event {
        min-width: 100%; /* Make the event card take full width */
        max-width: 100%; /* Ensure it doesn't exceed the screen width */
    }
}

.hidden4 {
    opacity: 0;
    transform: translateY(20%);
    transition: all 1.5s;
}

.show4 {
    opacity: 1;
    transform: translateY(0);
}

.btn-container {
    text-align: left;
    margin-top: 10px;
}

.btn-link {
    display: inline-block;
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    color: #ffffff !important; /* White text */
    background-color: #6c757d; /* Muted royal blue background */
    text-decoration: none;
    font-weight: bold;
    padding: 0.8em 1.5em;
    border: none;
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    width: 100%;
}

.btn-link:hover {
    background-color: #5a6268; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift on hover */
}

.book-event-btn-container {
    margin-top: 3em;
    text-align: center;
}

.book-event-btn-container .btn-link2 {
    display: inline-block;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    color: #ffffff !important; /* White text */
    background-color: #f5a111; /* Vibrant orange */
    text-decoration: none;
    font-weight: bold;
    padding: 0.8em 2em;
    border: none;
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.book-event-btn-container .btn-link2:hover {
    background-color: #d4880a; /* Darker orange on hover */
    transform: translateY(-2px); /* Slight lift on hover */
}

.no-events-placeholder {
    min-width: 500px;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 calc(33.33% - 2em);
}

.no-events-message {
    color: #b9bbbe;
    font-family: 'Outfit', sans-serif;
    font-size: 1.08rem;
    margin: 0;
    line-height: 1.7;
}

.no-events-link {
    color: #f5a111;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}
.no-events-link:hover {
    color: #d4880a;
}

.testimonials::before {
    background-image: url(./images/sparkels.jpeg);
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    background-size: cover;
}

.testimonials {
    min-height: max-content;
    background-color: rgba(255, 255, 255, 0.86);
    position: relative;
}
  .testimonials .content {
    padding: 100px 15%;
    text-align: center;
  }
  .testimonials .content .reviews {
    display: flex;
    justify-content: center;
  }
  .testimonials .content .reviews div:not(:last-child) {
    margin-right: 2em;
  }
  .testimonials .content p {
    font-family: "Outfit";
    color: black;
  }
  .testimonials .content h1 {
    margin: 10px 0 50px 0;
    color: black;
    font-size: 38px;
    font-weight: bold;
    font-family: "Outfit";
  }
  .testimonials .content h2 {
    color: black;
    font-size: 20px;
    font-family: "Outfit";
    padding-bottom: 40px;
  }
  
  .star {
    color: gold;
    font-size: 27px;
  }

b {
    font-weight: 600;
}

@media (min-width: 90em) {
    .contain {
        display: flex;
        padding-top: 50px;
        padding-bottom: 50px;
        margin: 0 auto;
        width: 90%;
        max-width: 1600px;
        text-align: left;
    }
    .image-container img, .image-container2 img{
        width: 30vw;
        max-width: 525px;
    }
    .image-container2 {
        display: block;
    }
    .background-1 {
        background: radial-gradient(rgb(0 0 0 / 0%), rgb(0 0 0));
    }
    .background-1 {
        background: radial-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.05));
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }
    .TopImage {
        position: absolute;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 50vw;
        max-height: 82vh;
        z-index: -1;
        box-shadow:  20px 20px 60px #000000,
        -20px -20px 60px #000000;
    }
    .ImageContent {
        height: 50vw;
        max-height: 82vh;
        width: 100%;
    }
}

@media (max-width: 75em) {
    .contain {
        display: block;
        padding: 0;
        margin: 0;
        width: auto;
        text-align: left;
        text-align: center;
    }
    .contain div:not(:last-child) {
        margin-right: 0;
    }
    .background-1 {
        background: radial-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5));
    }
    .image-container2 {
        display: none;
    }
    .NavMenu{
        display: flex;
        flex-direction: column;
        width: fit-content;
        width: 100%;
        margin: 0;
    }
    .NavMenu div:not(:last-child) {
        margin-right: 0;
        margin-bottom: 1.5em;
    }
    .NavLinks {
        justify-content: center;
        min-width: fit-content;
    }
    .NavLinks a:not(:last-child) {
        margin-right: 1em;
    }
    .LogoImage {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .FirstContainer{
        padding: 0 2em 0 2em;
    }
    .SecondContainer{
        padding: 1em 0em 3em 0em;
    }
    .testimonials .content {
        padding: 4em 2em 4em 2em;
    }
    .TopImage {
        height: 70vh;
    }
    .ImageContent{
        height: 70vh;
    }
}

@media (max-width: 520px) {
    .LogoImage img {
        height: 75px;
    }
    .NavLinks {
        display: block;
    }
    .NavLinks a{
        margin-right: 10px;
    }
    .NavLinks a:nth-last-child(2) {
        margin-right: 0;
    } 
    .NavLinks a:last-child{
        margin-top: 10px;
        float: left; 
        width: 100%; 
        clear: both;
    }
    .inner-container h1{
        font-size: 1.4rem;
    }
    .inner-container p{
        font-size: 1.1rem;
    }
    .inner-container2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .inner-container2 h1{
        font-size: 1.4rem;
        margin: 0;
    }
    .inner-container2 p{
        font-size: 1.1rem;
    }
    .btn {
        margin-top: 1em;
        position: relative;
    }
    .testimonials .content h1 {
        font-size: 30px;
    }
    .hidden { 
        transition: opacity 1s;
    }
    .hidden3 { 
        opacity: 1; 
        filter: none;
        transform: none;
        transition: none;
    }
    .show3 { 
        opacity: 1; 
        filter: none;
        transform: none;
    }
}