/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #000;
    color: #fff;
    text-align: center;
}

/* Intro Section - Logo & Coming Soon */
.intro-section {
    text-align: center;
    padding: 0; /* Remove top gap */
    background: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
}

.intro-logo {
    width: 250px; /* Default size */
    height: auto;
   
}

.coming-soon {
    font-size: 40px;
    color: white;
}

/* Hide header since logo is in the intro */
header {
    display: none;
}

/* Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* Slide Text */
.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
    width: 95%;
    max-width: 90%;
}

.slide-text h1 {
    font-size: 53px;
    margin-bottom: 10px;
}

.slide-text p {
    font-size: 47px;
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    color: black;
    border: none;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Dots - Move Below Image */
.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5); /* Adds contrast so dots are visible */
    padding: 10px 0;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 5px;
    background: gray;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .intro-logo {
        width: 150px; /* Smaller logo for mobile */
    }

    .coming-soon {
        font-size: 28px;
    }

    .slide-text h1 {
        font-size: 28px;
    }

    .slide-text p {
        font-size: 22px;
    }

    .prev, .next {
        padding: 10px;
        font-size: 18px;
    }

    .dot {
        height: 8px;
        width: 8px;
    }
}
