/* Popup Styling */

.popup-content h3 {
    margin-top: 0;
}

.popup-content button {
    display: block;
    margin: 0 auto;
}

/* Image Gallery in Popup */
.image-gallery {
    margin-top: 20px;
}

.image-gallery .row {
    display: flex;
    gap: 15px;  /* Space between images */
}

.image-gallery .col-md-4 {
    flex: 1;
}

.img-fluid {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Section Styles */
.section-welcome {
    background-color: #F0F8FF; /* Alice Blue */
    color: #000; /* Black text */
    padding: 40px 25px;
}

.section-mystical {
    background-color: #ADD8E6; /* Light Blue */
    color: #000; /* Black text */
    padding: 40px 25px;
}

.section-characters {
    background-color: #B0E0E6; /* Powder Blue */
    color: #000; /* Black text */
    padding: 40px 25px;
}

.section-crypto {
    background-color: #4682B4; /* Steel Blue */
    color: #fff; /* White text */
    padding: 40px 25px;
}

.section-roadmap {
    background-color: #4169E1; /* Royal Blue */
    color: #fff; /* White text */
    padding: 40px 25px;
}

.section-community {
    background-color: #000080; /* Navy Blue */
    color: #fff; /* White text */
    padding: 40px 25px;
}

/* Spacer Between Sections */
.image-space {
    height: 50px; /* Adjust height as needed */
    background-color: #E0E0E0; /* Light Gray for visual separation */
    margin: 20px 0; /* Space between sections */
}

/* About Section Image */
#about img {
    max-height: 400px; /* Maximum height for the image */
    object-fit: cover; /* Ensure image is cropped correctly */
}

#about .col-md-6 {
    margin-bottom: 20px; /* Add space between text and image on smaller screens */
}

.popup-overlay {
    display: none;  /* Hide by default */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);  /* Semi-transparent background */
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #fff;
    border-radius: 8px;
    width: 80%;  /* Adjust the width of the popup */
    max-width: 1200px;  /* Max width for larger screens */
    margin: 100px auto;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    max-height: 80%;
}

button {
    cursor: pointer;
}
