body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Ensure slider is behind other elements */
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease; /* Fading transition duration */
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the entire slide */
}

/* Header */
header {
    position: fixed; /* Keeps header at the top */
    top: 0;
    left: 0;
    width: 95%;
    z-index: 1000; /* Ensures the header stays on top */
    display: flex;
    justify-content: space-between; /* Align logo to left, nav to right */
    align-items: center;
    padding: 10px 10px;
    background-color: transparent; /* No background color */
    color: white;
}

.header-nav {
    display: flex;
    gap: 20px; /* Space between buttons */
}


.header-button {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.header-button:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Subtle hover effect */
}

.small-logo {
    width: 80px;
    height: 80px;
}

.wip {
    text-align: center;
    font-weight: 700;
    font-size: x-large;
    color: black;
    letter-spacing: .5rem;
    margin-top: 2px;
}



.rectangular-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.rectangular-logo img {
    width: 700px; /* Adjust size as needed */
    height: auto;
}

/*.rectangular-logo:hover { */
  /*  transform: translate(-50%, -50%) scale(1.1); /* Scale up on hover */
/* } */

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0)); /* Adjust gradient colors as needed */
    z-index: 5; /* Ensure the overlay is between the logos and the slides */
}

/* Preloader styling */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff; /* Preloader background color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Make sure the preloader is on top */
}

.preloader-icon {
    width: 80px; /* Adjust size of the icon */
    height: 80px;
}

/* Content will be hidden initially */
#content {
    display: none;
    overflow: auto; /* Re-enable scrolling once the content is visible */
}

/* Greeting overlay - bottom right corner */
.greeting-overlay {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7); /* Subtle dark background */
    color: #ddd; /* Light gray text */
    padding: 10px 15px;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
    z-index: 1000;
    max-width: 250px;
    line-height: 1.4;
    text-align: left;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Typing effect - makes text appear letter by letter */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.typing-text {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #ddd; /* Blinking cursor */
    animation: typing 3s steps(30, end), blink-caret 0.7s step-end infinite;
}

/* Blinking cursor effect */
@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #ddd; }
}



/* Media Queries for Responsive Design */
@media screen and (max-width: 768px) {
    .logo img {
        width: 50px; /* Adjust logo size for smaller screens */
        
    }

    .rectangular-logo{
        text-align: center;
    }

    .rectangular-logo img {
        width: 250px; /* Adjust rectangular logo size for smaller screens */
    }
}

/* Mobile devices (portrait) */
@media (max-width: 480px) {
    .header-button{
        font-size: 14px;
        padding: 8px 10px;
    }

    .rectangular-logo{
        text-align: center;
    }


    .small-logo{
        width: 60px;
        height: 60px;
    }

    .wip{
        font-size: large;
    }
}

