@import url('https://fonts.googleapis.com/css2?family=Fredoka:wdth,wght@112.5,300..700&display=swap');

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

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/background.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.overlay {
    text-align: center;
    color: rgb(0, 0, 0);
    padding: 20px;
    width: 100%;
    max-width: 800px;
}

.logo {
    width: 40%;
    height: auto;
    margin-bottom: 20px;
}

.logo2 {
    width: 30%;
    height: auto;
    margin-top: 30px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    overflow-x: auto; /* Allows horizontal scrolling */
    z-index: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; /* Added padding to ensure the inner content is not touching the sides */
}

.navbar-logo {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.navbar-logo .logo {
    width: 50px;
    height: auto;
    margin-right: 10px;
    margin-bottom: 5px; /* Added margin-bottom to prevent touching the top */
}

.navbar-logo .logo-text {
    font-family: "Fredoka", sans-serif;
    font-size: 30px;
    font-weight: bold; /* Made the text bold */
    color: #fff;
    text-shadow: -2px -2px 0 #ff7db4, 2px -2px 0 #ff7db4, -2px 2px 0 #ff7db4, 2px 2px 0 #ff7db4;
}

.navbar button {
    display: flex;
    font-family: "Fredoka", sans-serif;
    border: none;
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(36, 36, 36, 0.4);
    transition: background-color 0.3s, box-shadow 0.3s ease;
    margin: 0 10px;
    white-space: nowrap; /* Prevent buttons from wrapping to a new line */
}

.navbar button:hover {
    box-shadow: 6px 6px 6px rgba(36, 36, 36, 0.6);
    background-color: #ff7db4;
    color: #fff;
}

.navbar button:active {
    background-color: #404040;
}

button {
    font-family: "Fredoka", sans-serif;
    border: none;
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(36, 36, 36, 0.4);
    transition: background-color 0.3s, box-shadow 0.3s ease;
    margin: 0 10px;
    white-space: nowrap; /* Prevent buttons from wrapping to a new line */
}

button:hover {
    box-shadow: 0px 0px 20px rgba(36, 36, 36, 0.6);
    background-color: #000;
    color: #fff;
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    .navbar {
        justify-content: flex-start; /* Align items to the start for better scroll */
    }

    .navbar-inner {
        justify-content: flex-start; /* Align items to the start for better scroll */
        padding: 10px 5px; /* Reduce padding for smaller screens */
    }

    .navbar button {
        margin: 0 5px; /* Reduce margin for smaller screens */
        padding: 10px 15px; /* Reduce padding for smaller screens */
        font-size: 14px; /* Reduce font size for smaller screens */
    }
}   

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.countdown-element {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time {
    font-size: 50px;
    font-weight: bold;
}

.label {
    font-size: 20px;
    margin-top: -10px;
}

.content {
    padding: 20px;
    text-align:center;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    box-shadow: 0 0px 20px #000;
    margin-bottom: 20px;
}

.faq-section {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    color: black;
    margin: 20px auto;
    max-width: 800px;
    width: 90%;
}

.faq {
    margin-bottom: 20px;
}

.faq h3 {
    margin-bottom: 10px;
}

.faq p {
    margin: 0;
}

.lead-button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Fredoka", sans-serif;
    border: none;
    color: #000;
    padding: 10px 20px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(36, 36, 36, 0.4);
    transition: background-color 0.3s, box-shadow 0.3s ease;
    white-space: nowrap;
    margin-bottom: 20px;
    min-width: 150px; /* Minimum width for the button */
}

.lead-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comic-section {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    color: black;
    margin: 20px auto;
    width: 90%;
}

.content2 {
    display: flex;
    justify-content: center; /* Center align horizontally */
    align-items: center; /* Center align vertically */
    flex-wrap: wrap; /* Allow content to wrap if needed */
    padding: 20px;
    margin-top: 40px;
    max-width: 800px;
    max-height: 800px;
    width: 100%; /* Ensure full width responsiveness */
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    box-shadow: 0 0px 20px #000;
}

.comic {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.carousel-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.carousel-wrapper {
    overflow: hidden;
    width: 900px; /* Adjust the width as needed */
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
    width: max-content; /* Ensure the width of the carousel is as wide as the total content */
}

.carousel-image {
    width: 300px; /* Adjust the width as needed */
    margin: 0 10px; /* Space between images */
    border-radius: 15px; /* Rounded corners */
}
