/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: row;
 
    margin: 0 auto;

    border-radius: 20px;
    overflow: hidden;
}

.left, .right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    margin-bottom: 20px;
}

.logo {
    width: 200px;
    height: auto;
}

main h1 {
    font-size: 3.5rem;
    color: #f3bc19;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

main p {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #bbb;
    letter-spacing: 1px;
}

.coming-soon {
    position: relative;
    display: inline-block;
    padding: 20px 0;
}

.coming-soon .text {
    font-size: 2.8rem;
    color: #f3bc19;
    letter-spacing: 6px;
    position: relative;
    font-weight: 700;
}

.coming-soon .text::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #f3bc19, transparent);
    bottom: -10px;
    left: 0;
    animation: slide 2.5s infinite;
}

.view-products-button {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 50px;
    background: linear-gradient(135deg, hsl(45, 90%, 53%) 0%, #eaa600 100%);
    color: #000;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0px 4px 15px rgba(243, 188, 25, 0.4);
    transition: all 0.4s ease;
}

.view-products-button:hover {
    background: linear-gradient(135deg, #ffc400 0%, #e0a600 100%);
    transform: translateY(-5px);
    box-shadow: 0px 6px 20px rgba(243, 188, 25, 0.6);
}


/* Image Slider Styles */
.image-slider {
    position: relative;
    width: 80%;
   
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.27);
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #f3bc19;
    font-size: 2rem;
    padding: 5px 15px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
@media (max-width: 1024px){
    .container {
        flex-direction: column;
        padding: 20px;
    }

    .left, .right {
        padding: 20px;
        width: 100%;
    }

    main h1 {
        font-size: 2rem;
    }

    main p {
        font-size: 1rem;
    }
    .coming-soon {
       
        padding: 0px;
    }

    .coming-soon .text {
        font-size: 2rem;
    }

    .image-slider {
        width: 70%;
       
    }
}

/* Mobile Responsiveness */
@media (max-width: 760px) {
    .container {
        flex-direction: column;
        padding: 20px;
    }

    .left, .right {
        padding: 20px;
        width: 100%;
    }

    main h1 {
        font-size: 2rem;
    }

    main p {
        font-size: 1rem;
    }
    .coming-soon {
       
        padding: 0px;
    }

    .coming-soon .text {
        font-size: 2rem;
    }

    .image-slider {
        width: 100%;
       
    }

    .view-products-button {
        font-size: 1rem;
        padding: 12px 30px;
    }
    .prev {
        left: 2px;
    }
    
    .next {
        right: 2px;
    }
}
