main {
    /* font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
        "Courier New", monospace; */
    line-height: 2.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.navbar {
    transition: background-color 0.6s ease;
}

h1 {
    font-family: "Ubuntu", sans-serif;
}

#myTabContent {
    font-family: "Ubuntu", sans-serif !important;
}

#countdownSection,
#packages {
    font-family: "Ubuntu", sans-serif !important;
}

#countdownSection,
#highlights {
    background: #FFE000;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #799F0C, #FFE000);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #799F0C, #FFE000);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.tgrad {
    background: -webkit-linear-gradient(0.5turn, #31002e, #c738bd, #31002e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slidein {
    animation-duration: 2s;
    animation-name: slidein;
}

@keyframes slidein {
    from {
        margin-left: 100%;
        width: 300%;
    }
}

.card img {
    transition: transform 0.3s ease-in-out;
}

.card img:hover {
    transform: scale(1.05);
}

.col img {
    transition: transform 0.3s ease-in-out;
}

.col img:hover {
    transform: scale(1.02);
}

.button {
    position: relative;
    overflow: hidden;
    height: 3rem;
    padding: 0 2rem;
    border-radius: 1.5rem;
    background: #059212;
    background-size: 400%;
    border: none;
    cursor: pointer;
}

.button:hover::before {
    transform: scaleX(1);
}

.button-content {
    position: relative;
    z-index: 1;
}

.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 100%;
    height: inherit;
    border-radius: inherit;
    background: linear-gradient(82.3deg,
            rgba(255, 224, 0, 1) 10.8%,
            rgba(121, 159, 12, 1) 94.3%);
    transition: all 0.475s;
}

.carousel-item img {
    height: 90vh;
}

@media only screen and (max-width: 768px) {
    .carousel-item img {
        height: 60vh;
    }
}

.carousel-caption {
    font-family: "Ubuntu", sans-serif;
    align-self: center;
}

.carousel-caption h2 {
    font-weight: bolder;
    font-size: 7vh;
}

@media only screen and (max-width: 768px) {
    .carousel-caption h2 {
        font-size: 3vh;
    }
}

/* COUNT DOWN SECTION CSS  */
.time-wrapper {
    text-align: center;
}

.time {
    font-size: 2rem;
    font-weight: bold;
    transition: transform 0.3s;
    background: rgba(255, 255, 255, 0.2);
}

.time:hover {
    transform: scale(1.02);
}

.label {
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* GLASS MORPHISM  */
.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    /* border: 1px solid rgba(255, 255, 255, 0.18); */
    /* box-shadow: 0 8px 32px 0 rgba(31, 135, 40, 0.37); */
    padding: 20px 50px;
    /* margin: 20px; */
}


/* SPEAKER SECTION  */
/* #speakerImg {
    border-radius: 50% !important;
} */

/* .speaker-img {
    border-radius: 4px;
    border: 10px solid transparent;
    transition: all 0.3s ease;
}

.speaker-img:hover {
    border-color: #005d9d;
    border-radius: 0;
} */


/* ACTIVE NAVBAR LINK  */
.nav-link {
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.nav-link.active {
    color: #00ff15 !important;
    border-bottom: #00ff15;
    border-style: solid;
    font-style: italic;
}

/* SUBMIT FORM BUTTON CSS  */
.submitForm {
    margin-top: 10px;
    background: #00af12;
    color: #ffffff;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.submitForm:hover {
    background: #00ff15;
    color: #000000;
    transition: all 0.8s;
}

/* tests */

/* BACK TO TOP ARROW  */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
    background-color: #00af12 !important;
    border-color: #00af12 !important;
}

.back-to-top i {
    color: white;
}

/* LOADER CSS  */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.plant-loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.stem {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 6px;
    height: 0;
    background-color: #00af12;
    animation: grow-stem 2s ease-out infinite;
}

.leaf {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 100% 0;
    background-color: #00af12;
    opacity: 0;
    animation: grow-leaf 2s ease-out infinite;
}

.leaf-1 {
    top: 40%;
    left: 50%;
    transform: translate(-100%, -50%) rotate(-45deg);
    animation-delay: 0.5s;
}

.leaf-2 {
    top: 60%;
    right: 50%;
    transform: translate(100%, -50%) rotate(135deg);
    animation-delay: 1s;
}

.leaf-3 {
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    animation-delay: 1.5s;
}

@keyframes grow-stem {
    0% { height: 0; }
    100% { height: 100%; }
}

@keyframes grow-leaf {
    0% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 1; transform: scale(1); }
}

.loading-text {
    position: absolute;
    bottom: 20%;
    font-size: 24px;
    color: #00af12;
    font-weight: bold;
}

.dots {
    display: inline-block;
    width: 30px;
    text-align: left;
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* HERO SECTION  */
.zoominheader {
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the last value (0.5) for opacity */
}

.carousel-caption {
    z-index: 2; /* Ensure the text appears above the overlay */
}
