/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
    /* Dialogue box */
  
    .top-panel {
        background-color: #0059F0;
        height: 30px;
        border-radius: 15px 15px 0 0;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        color: white;
        padding: 5px 0px 0px 9px;
    }
    
    .dialogue {
        border: 2px solid #0059F0; /* Apply the border directly to the dialogue */
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        padding: 5px;
        margin-top: -4px; /* Adjust this value to snugly fit beneath the top panel */
        background-color: #f0f0f0;
        color: #000000;
    }
    
    button {
        float: right;
        background-color: #DE5227;
        margin-right: 10px;
        color: white;
        border-radius: 15%;
        font-size: 15px;
    }

/* Body styling */
body {
    font-family: Arial, sans-serif;
    color: #fff;
    line-height: 1.6;
    padding: 20px;
    background-image: url('elements/darkbrown.png');
    background-repeat: repeat;
    background-size: auto;
    cursor: url('elements/sexy_mouse.cur'), auto;

}
a:hover {
    cursor: url('elements/minionspongebob.cur'), auto;
}
h1, h2, h3, h4, h5, h6 {
    font-family: Impact, sans-serif;
    color: white; /* Set the text color */
    text-align: center;
    text-shadow: -2px -2px 0 black, /* Top-left shadow */
                 2px -2px 0 black,  /* Top-right shadow */
                 -2px 2px 0 black,  /* Bottom-left shadow */
                 2px 2px 0 black;   /* Bottom-right shadow */
}
.photo-gallery {
    display: flex;
    flex-wrap: wrap; /* Allows photos to wrap to the next row if needed */
    justify-content: center; /* Centers the images horizontally */
    gap: 20px; /* Adds spacing between photos */
    padding: 20px;
    max-width: 100%; /* Optional: Set a max width for the gallery to center within the page */
    margin: 0 auto; /* Horizontally centers the gallery */
}

.photo-gallery img {
    width: calc(100% - 30px); /* Makes images larger (3 images per row) */
    height: auto; /* Ensures images keep their aspect ratio */
    max-width: 100%; /* Ensures no image overflows its container */
    border: 5px solid white; /* Adds a white border */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: Adds a shadow for aesthetics */
    object-fit: contain; /* Ensures the image fits nicely without cropping */
}
/* Container for the content */
.mystery-container {
    display: flex; /* Use flexbox to align the Flash game and image horizontally */
    align-items: center; /* Vertically align the game and image */
    justify-content: center; /* Centers the entire content horizontally */
    gap: 20px; /* Adds spacing between the Flash game and the image */
    padding: 20px;
}

/* Styling for the Flash game */
.flash-game object {
    border: none; /* Optional: Remove default borders */
}

/* Styling for the image */
.mystery-image-container img {
    max-width: 100%; /* Ensures the image scales properly */
    height: auto; /* Maintains aspect ratio */
    
}
.contact-image-container {
    display: flex; /* Enable horizontal alignment */
    justify-content: center; /* Center the images horizontally */
    gap: 10px; /* Optional: Adds space between the images */
}

.contact-image-container img {
    max-width: 100%; /* Ensures images are responsive */
    height: auto; /* Maintains aspect ratio */
    flex-shrink: 0; /* Prevents images from shrinking too much */
    max-width: 300px; /* Optional: Restrict the image width */
}

.iframe-bandcamp {
    display: flex; /* Aligns both iframes side by side */
    align-items: stretch; /* Ensures both iframes align vertically */
    gap: 10px; /* Adds space between the two iframes */
}

.iframe-bandcamp iframe:first-child {
    width: 350px; /* Keeps the embedded player fixed in width */
    height: 442px; /* Maintains height for the embedded player */
}

.bandcamp-follow-buttons {
    display: flex; /* Enable Flexbox for layout */
    flex-wrap: wrap; /* Allow buttons to wrap to the next line */
    gap: 5px; /* Optional: Adds a small gap between buttons */
    justify-content: flex-start; /* Aligns buttons to the left */
    width: 100%; /* Ensure the container spans the full width */
}

.bandcamp-follow-buttons iframe {
    width: 200px; /* Sets a consistent width for each button */
    height: 33px; /* Keeps the button height consistent */
    margin: 0; /* Removes default margin for precise spacing */
}

/* Header and navigation */
header {
    background: #ff00d0;
    color: #fff;
    padding: 10px 0;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav .logo {
    font-size: 1.5rem;
    margin-left: 20px;
}

header nav ul {
    display: flex;
    list-style: none;
}

header nav ul li {
    margin-right: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
}

header nav ul li a:hover {
    background: #575757;
    border-radius: 5px;
}

/* Menu icon for mobile */
header .menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
/* Basic styling */
.video-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.video-table {
    width: 100%;
    border-collapse: collapse; /* Removes borders between cells */
}

.video-table td {
    padding: 10px;
    vertical-align: top;
}

/* Specific styles for cells */
.video-cell iframe {
    max-width: 100%; /* Ensures the video scales for responsiveness */
    border: none; /* Removes any default borders */
}

.description-cell p {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
}
nav ul li a.mystery {
    color: #ff00d0; /* Set the text color to pink */
}
.mobile-image {
    display: none;
}
/* Responsive layout for mobile */
@media (max-width: 768px) {
    .video-table {
        display: block; /* Turn the table into block layout */
    }

    .video-cell, .description-cell {
        display: block; /* Stack cells vertically */
        width: 100%;
        margin-bottom: 20px;
    }
    .photo-gallery {
        flex-direction: column; /* Stacks photos vertically on small screens */
        align-items: center; /* Centers photos in the column layout */
    }

    .photo-gallery img {
        max-width: 100%; /* Ensures images adjust to fit smaller screens */
    }

    /* Default: Hide the image on larger screens */

.mobile-image {
        display: block; /* Makes the image visible */
        text-align: center; /* Optional: Center the image container */
    }

    .mobile-image img {
        max-width: 100%; /* Ensures the image scales properly */
        height: auto; /* Maintains aspect ratio */
    }

}
/* Content section styling */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    width: 100%;
}

.image-left {
    margin-right: 20px;
    width: 100%;
    height: auto;
}

.text {
    max-width: 100%;
    text-align: center;
}

/* Main content */
main {
    padding: 20px;
    margin-top: 20px;
}

main h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

main p {
    margin-bottom: 10px;
}

/* Slideshow container */
.slideshow {
    position: relative;
    width: 100%;
    height: 250px;
    background: #00ff12;
    margin-top: 20px;
}

/* Hide all slides by default */
.slide {
    display: none;
    text-align: center;
    height: 100%;
    color: black;
}

.slide:first-child {
    display: block;
}

.slide-content {
    margin: 0 auto;
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Next and previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: black;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

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

/* Bottom left image */
.bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Top right image */
.top-right {
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(180deg);
}

/* Video section */
.video-section {
    margin-top: 20px;
}

.video-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.video-left, .video-right {
    width: 100%;
    margin: 10px 0;
}

.video-description {
    width: 100%;
    margin: 10px 0;
    text-align: center;
}

/* Contact section */
.contact-section {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.contact-info {
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: #00ff00;
    border-radius: 5px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info a {
    color: #000;
    text-decoration: none;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Footer */
footer {
    background: #ff00d0;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    clear: both; /* Prevents overlap with floated elements */
}


/* Mobile-specific styling for all mobile devices */
@media (max-width: 1125px) {
    body {
        padding: 10px;
    }

    header nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #ff00d0;
    }

    header nav ul.active {
        display: flex;
    }

    header nav ul li {
        margin: 10px 0;
    }

    header .menu-icon {
        display: block;
        margin-right: 20px;
    }

    /* Full-width banner styling */
    .banner {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .banner img {
        width: 100%;
        height: auto;
    }

    /* Ensure content takes full width */
    .content {
        flex-direction: column;
        width: 100%;
    }

    .text {
        width: 100%;
        text-align: center;
    }

    .image-left {
        width: 100%;
        margin: 0;
    }

    .video-content {
        flex-direction: column;
        align-items: center;
    }

    .video-left, .video-right {
        width: 100%;
        margin: 10px 0;
    }

    .video-description {
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }

    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-info, .contact-image {
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }


}
