@charset "UTF-8";
/* index.css */
body, html {
    margin: 0;
    padding: 0;
    /*overflow: hidden; */    
    font-family: 'Poppins', sans-serif;
}

/* Background Slides */
.background-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the background slides */
    gap: 20px; /* Add spacing between images */
    padding: 20px;
}

.background-slide {
    width: 300px; /* Adjust width as needed */
    aspect-ratio: 4 / 3; /* Maintain aspect ratio */
    background-size: cover;
    background-position: center;
    border-radius: 0px; /* Optional: Rounded corners */n
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Optional: Add shadow for style */
}

.background-slide.active {
    transform: translateY(0);
}

/* Layer Text */
.layer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    color: white;
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.7);
}

.layer-text .headline {
    font-size: 3em;
    margin-bottom: 20px;
    cursor: pointer;
    transition: opacity 0.8s ease-in-out;
}

.layer-text .description {
    font-size: 1.2em;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    z-index: 1;
}

.layer-text .description.reveal {
    opacity: 1;
    transform: translateY(0);
}

.menu-container nav.menu {
    font-family: 'Poppins', sans-serif;
    font-size: 16px; /* Adjust to your preference */
    z-index: 1000;
}
.menu {
font-family: 'Poppins', sans-serif;
    z-index: 9000;
}

.custom-cursor {
    position: absolute;
    width: 40px; /* Adjust as needed */
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: pulse 1.5s infinite;
    z-index: 2000;
}

.custom-cursor::before,
.custom-cursor::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-left: 2px solid rgba(255, 255, 255, 0.8);
    border-top: 2px solid rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
}

.custom-cursor::before {
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.custom-cursor::after {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-135deg);
}
        /* Custom Cursor */
        .custom-cursor {
            position: absolute;
            width: 40px;
            height: 40px;
            border: 2px solid white;
            border-radius: 50%;
            pointer-events: none;
            transform: translate(-50%, -50%);
        }

#headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4vw; /* Responsive font size relative to viewport width */
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    white-space: nowrap; /* Prevent text from wrapping */
    opacity: 1;
    transition: opacity 1s ease, transform 1s ease;
}

#headline.fade-out {
    opacity: 0;
    transform: translate(-50%, -60%) scale(0.8); /* Adjust for a fading shrink effect */
}
        #headline:hover {
            color: #000000; /* Optional: Add hover effect color */
        }

#text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3em;
    color: #ffffff;
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

#text.reveal {
    opacity: 1;
    transform: translateY(0);
    background-color: rgba(0, 0, 0, 0.5); /* Black background with 50% opacity */
    padding: 40px;
}

