/* For Chrome, Safari, and Opera */
::-webkit-scrollbar {
    width: 12px;
    /* width of the scrollbar */
}

::-webkit-scrollbar-thumb {
    background-color: #111;
    /* color of the scrollbar thumb */
    border-radius: 6px;
    /* roundness of the scrollbar thumb */
}

::-webkit-scrollbar-track {
    background-color: #333;
    /* color of the scrollbar track */
}


body {
    font-family: Arial, sans-serif;
    font-size: larger;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    /* color: white; */
    color: #fcf5dc;
    background-color: black;
    overflow-x: hidden;
}

.hero {
    background: url('hero.jpg') center center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

h2 {
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.flex-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.flex-container div {
    flex: 1;
}

.band-bio,
.band-photos,
.press-links,
.music-videos {
    display: flex;
    align-items: center;
}

.band-bio .text,
.band-photos .text,
.press-links .text,
.music-videos .text {
    flex: 1;
    padding: 20px;
}

.band-bio img,
.band-photos img {
    flex: 1;
    max-width: 500px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

ul li a {
    text-decoration: none;
    color: #ffd700;
}

ul li a:hover {
    text-decoration: underline;
}

.video-gallery iframe {
    width: 100%;
    max-width: 500px;
    height: 280px;
    margin-bottom: 20px;
}

.footer {
    text-align: center;
    padding: 20px;
    background: #0c0c0c;
    color: white;
}

.ch-logo {
    height: 400px;
    margin-bottom: -100px;
}

/* Responsive Styles */
@media (max-width: 768px) {

    /* Stack content vertically on smaller screens */
    .band-bio,
    .band-photos,
    .press-links,
    .music-videos {
        flex-direction: column;
        text-align: center;
    }

    .flex-container img {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .band-bio img,
    .band-photos img {
        max-width: 100%;
    }

    /* Reduce text padding for better readability */
    .band-bio .text,
    .band-photos .text,
    .press-links .text,
    .music-videos .text {
        padding: 10px;
    }

    /* Adjust hero padding */
    .hero {
        padding: 30px 15px;
        background-size: cover;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    /* Adjust video iframe for smaller screens */
    .video-gallery iframe {
        max-width: 100%;
        height: auto;
    }

    .ch-logo {
        height: 300px;
        margin-bottom: -100px;
    }
}

/* Carousel */
.carousel {
    position: relative;
    width: 80%;
    overflow: hidden;
    margin-left: 11%;
    margin-bottom: 10%;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: calc(100% / 3);
    /* Show 3 items at a time */
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    padding-left: 40px;
    padding-right: 40px;
}

.carousel-item h3 {
    text-transform: uppercase;
    font-size: 22px;
    text-align: center;
    margin-top: 4%;
    margin-bottom: 10px;
    white-space: nowrap;
    /* Prevent text from wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
    /* Add ellipsis for overflowed text */
}

.carousel p {
    text-align: center;
    font-size: 15px;
    color: #AAA;
    white-space: nowrap;
    margin-top: -5px;
    margin-bottom: 25px;
}

.carousel-item img {
    width: 100%;
    height: auto;
}

.carousel-item:hover {
    transform: translateY(-5px);
    /* Move the box up on hover */
}


.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0);
    color: white;
    font-size: 25px;
    border: none;
    cursor: pointer;
    padding: 10px;
}


/* Mobile view adjustments */
@media screen and (max-width: 768px) {
    .carousel-container {
        flex-direction: column;
        /* Stack items vertically */
        align-items: center;
        /* Center items horizontally */
    }

    .carousel-item {
        min-width: 100%;
        /* Make each/ item take the full width */
        padding-left: 10%;
        padding-right: 10%;
    }

    .carousel-item img {
        width: 60%;
        /* Adjust image width for better appearance */
        height: auto;
    }
}

/* Discography OLD CODE REPLACED WITH CAROUSELS */
.listen-button {
    display: block;
    width: 100%;
    padding: 10px 0;
    background-color: #b8860b;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.listen-button:hover {
    background-color: #ffd700;
}



/* Photo Gallery Section */
    .photo-gallery {
        padding: 20px;
        background-color: #222;
        color: white;
    }

    .photo-gallery h2 {
        text-align: center;
        margin-bottom: 20px;
        font-size: 2rem;
        border-bottom: 2px solid #333;
        display: inline-block;
        padding-bottom: 5px;
    }

    .photo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, 380px); 
        justify-content: center; 
        gap: 10px; /* Space between grid items */
    }

    .photo-grid img {
        width: 100%; 
        height: 440px; 
        object-fit: cover; 
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Hover effect */
    .photo-grid img:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 768px) {
        .photo-grid {
            grid-template-columns: repeat(auto-fit, 350px); /* Slightly smaller for tablets */
        }
    }

    @media (max-width: 480px) {
        .photo-grid {
            grid-template-columns: repeat(auto-fit, 300px); /* Smaller for phones */
        }
    }

    /* Contact form styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

#contact-form {
    background-color: #000;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #070707;
    color: white;
    font-family: Arial, sans-serif;
}

textarea {
    resize: vertical;
}

/* Style for the select dropdown */
#contact-form select {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #070707;
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
}

/* Style for the dropdown options */
#contact-form option {
    font-size: 16px;
}

.submit-button {
    display: block;
    width: 104%;
    padding: 10px;
    background-color: #b8860b;
    color: #fcf5dc;

    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #ffd700;
}

.section-text {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 70px;
    font-size: 25px;
}

a {
    color: #ffd700;
}

.download-btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #b8860b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.download-btn:hover {
    background-color: #ffd700;
}

/* PROMO PAGE */
.promo-video-gallery {
    display: flex;
    flex-wrap: wrap;  /* Allows videos to wrap if needed */
    justify-content: center;  /* Centers videos inside the container */
    gap: 20px;
    padding: 20px;
}

.video-item {
    flex: 1 1 calc(33.333% - 20px); /* 3 per row, accounting for gap */
    max-width: calc(33.333% - 20px); /* Ensures max width */
    display: inline-block;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 4%;
    padding-top: 2%;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .video-item {
        flex: 1 1 calc(50% - 20px); /* 2 per row on tablets */
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .video-item {
        flex: 1 1 100%; /* 1 per row on mobile */
        max-width: 100%;
    }
}

/* Video styling */
.video-item iframe {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* AbsentSound Box */
.absentsound-box {
    width: 100%; 
    height:158px;
}

@media (max-width: 768px) {
    .absentsound-box {
        width: 100%; 
        height:158px;
    }
}