/*
 * This stylesheet has been modified to remove the hardcoded styles
 * that were previously in the HTML file, and to remove the lazy-loading
 * animations as per your request. It's now a standalone file linked
 * from index.html for better organization and scalability.
 */

body {
    font-family: 'Open Sans', sans-serif;
    background-color: black;
    scroll-behavior: smooth;
    font-weight: 300;
}
/* Container for background images */
.background-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
}
/* Background image item */
.background-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}
/* Add a dark overlay on top of each background image */
.background-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
}
/* Active image with full opacity to show through the overlay */
.background-item.active {
    opacity: 1;
}
/* Custom font for the main header */
.font-header {
    font-family: 'Forum', serif;
    letter-spacing: 0.1em;
    font-display: swap;
    font-weight: 400;
}
/* Custom animation for the coming soon text */
@keyframes pulse-opacity {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.animate-pulse-slow {
    animation: pulse-opacity 2s ease-in-out infinite;
}
/* Typing cursor animation */
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: white; }
}
.typing-effect {
    border-right: .15em solid white; /* The typing cursor */
    white-space: nowrap;
    overflow: hidden;
    animation: 
        blink-caret .75s step-end infinite;
}
/* Lazy load animation for the header */
@keyframes fade-in-up-header {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in-up-header {
    animation: fade-in-up-header 1s ease-out 0.5s forwards;
    opacity: 0;
}
/* Color pulse animation for mobile/tablet */
@keyframes pulse-color {
    0%, 100% { color: #6ee7b7; } /* emerald-300 */
    50% { color: #ffffff; } /* white */
}
.animate-pulse-color-slow {
    animation: pulse-color 2s ease-in-out infinite;
}
/* Header cycling animation */
.header-cycle-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.header-cycle-text.active {
    opacity: 1;
}
/* Main content sections with reduced padding */
.content-section {
    padding-top: 4rem;
    padding-bottom: 2rem;
}
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}
.faq-answer.show {
    max-height: 500px; /* Large enough to accommodate the content */
}
.faq-icon {
    transition: transform 0.3s ease-in-out;
}
.faq-icon.rotate {
    transform: rotate(45deg);
}
/* Navbar behavior */
.navbar-transition {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.navbar-hidden {
    transform: translateY(-100%);
    opacity: 0;
}
.navbar-visible {
    transform: translateY(0);
    opacity: 1;
}
.clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* New animations for hero section */
@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-emerald {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.animate-fade-in-up-delay-1 {
    animation: fade-in-up 1s ease-out 0.7s forwards;
    opacity: 0;
}
.animate-fade-in-up-delay-2 {
    animation: fade-in-up 1s ease-out 1s forwards;
    opacity: 0;
}
.animate-pulse-emerald {
    animation: pulse-emerald 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
/* Icon rotation for mobile menu */
.menu-icon-rotate {
    transform: rotate(90deg);
}
/* Styles for the new hero slider */
.slider-container {
    overflow: hidden;
    width: 100%;
}
.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slider-item {
    flex: 0 0 100%;
    text-align: center;
}
/* Glowing light effect for buttons */
@keyframes glowing-light {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}
.animate-glowing-light {
    position: relative;
    overflow: hidden;
}
.animate-glowing-light::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    animation: glowing-light 3s infinite;
    filter: blur(5px);
}
/* The following lazy-load styles were removed as per your request */
/*
.lazy-load-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.lazy-load-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}
*/
