/* General body styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: white; /* Background color */
    color: white;
}

/* Header styling */
header {
    display: flex;
    align-items: center;
    justify-content: center; /* Center all content horizontally */
    padding: 20px;
    position: relative;
    height: 100vh; /* Full viewport height */
}

/* Main content container styling */
.content {
    display: flex;
    justify-content: space-between; /* Position timer-container and image-gallery on opposite sides */
    align-items: center; /* Center elements vertically */
    width: 100%;
    max-width: 1200px; /* Maximum width to center content */
    margin: 0 auto; /* Center content horizontally */
}

/* Timer container styling */
.timer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align elements to the start (left) */
    margin-left: 20px; /* Spacing between timer-container and image-gallery */
}

/* Logo styling */
.logo {
    width: 500px; /* Adjust logo size */
    height: auto;
    margin-bottom: 20px; /* Space between logo and text */
}

/* Coming Soon text styling */
.coming-soon {
    font-family: 'Poppins', sans-serif; /* Apply Poppins font */
    font-weight: 300; /* Light weight */
    font-size: 1.8em; /* Adjust size as needed */
    color: black; /* Black color for the text */
    margin: 0;
    text-align: left; /* Align text to the left */
}

/* Notify Text styling */
.notify-text {
    font-family: 'Poppins', sans-serif; /* Apply Poppins font */
    font-weight: 600; /* Bold weight */
    font-size: 3.5em; /* Larger size */
    color: black; /* Black color for the text */
    margin: 10px 0; /* Margin between text elements */
    text-align: left; /* Align text to the left */
}

/* Timer styling */
.timer {
    font-family: 'Poppins', sans-serif; /* Apply Poppins font */
    font-weight: 600; /* Bold weight */
    font-size: 3em; /* Larger font size for timer */
    color: #1976d2; /* Color for the timer */
    margin: 0; /* Remove margin if needed */
    text-align: left; /* Align text to the left */
}

/* Additional styles for input and button */
.email-container {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.email-input {
    padding: 12px;
    border-radius: 20px;
    border: 1px solid #ccc;
    margin-right: 10px;
    font-size: 0.9em;
    width: 250px;
    color: #333; /* Dark gray text color */
    background-color: #f9f9f9; /* Light gray background */
}

.notify-button {
    padding: 12px 20px;
    border-radius: 20px;
    border: none;
    background-color: #1976d2;
    color: white;
    font-size: 0.9em;
    cursor: pointer;
    transition: background-color 0.3s; /* Smooth transition */
}

.notify-button:hover {
    background-color: #155a9a; /* Darker shade on hover */
}

/* Error and success message styling */
.error-message {
    font-family: 'Poppins', sans-serif; /* Apply Poppins font */
    font-size: 1em;
    margin-top: 10px;
    color: red; /* Red color for error */
}

.success-message {
    font-family: 'Poppins', sans-serif; /* Apply Poppins font */
    font-size: 1em;
    margin-top: 10px;
    color: gray; /* Gray color for success message */
}

/* Hide elements */
.hidden {
    display: none;
}

/* Image gallery styling */
.image-gallery {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center images within this container */
    position: relative;
    margin-right: 20px; /* Spacing between image-gallery and timer-container */
}

.carousel-images {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center images within this container */
    position: relative;
}

.gallery-image {
    width: 300px; /* Adjust image size */
    height: auto;
    display: none; /* Hide images initially */
    box-shadow: 0 0 150px rgba(25, 118, 210, 0.55); /* Shadow effect with the specified color */
    border-radius: 15px;
    animation: moveUpDown 5s ease-in-out infinite; /* Add animation */
}

/* Keyframes for the up and down movement */
@keyframes moveUpDown {
    0% {
        transform: translateY(0); /* Start position */
    }
    50% {
        transform: translateY(-10px); /* Move up */
    }
    100% {
        transform: translateY(0); /* Return to start position */
    }
}

/* Carousel control styling */
.carousel-control {
    position: absolute;
    top: 50%;
    width: 60px; /* Larger control size */
    height: 60px; /* Larger control size */
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 30px; /* Larger font size */
    line-height: 60px;
    text-align: center;
    z-index: 1000;
    transform: translateY(-50%);
}

.prev {
    right: -70px; /* Adjust based on your design */
}

.next {
    left: -70px; /* Adjust based on your design */
}

@media (max-width: 768px) {
    .gallery-image {
        width: 150px; /* Adjust image size for smaller screens */
    }

    .carousel-control {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .prev {
        right: -50px; /* Adjust based on your design */
    }

    .next {
        left: -50px; /* Adjust based on your design */
    }
}
