/* 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 */
}


/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fcf5dc;

    @import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap')
}

/* ================================= DEV MORE ================================ */

/* .warning-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fcf5dc;

    text-align: center;
    z-index: 1000000; 
  }

.dev-msg {
    position: fixed; 
    top: 0; 
    right: 0; 
    bottom: 0; 
    left: 0; 
    padding: 20px;s
    background-color: rgba(0, 0, 0, 0.99); 
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .dev-msg h1 {
    margin-bottom: 10px;
  }
  
  .dev-msg p {
    margin: 0;
  } */

/* ================================= DEV MORE ================================ */  

.section-header {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 70px;
    font-size: 50px;
}

.section-text {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 70px;
    font-size: 25px;
}

/* .section-border{
    margin-top: -60px;
    margin-left: 40%; 
    margin-bottom: 60px;
    width: 20%; 
    border-bottom: 1px solid #141414;
} */

/* Navbar styles */
nav {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    padding: 20px 0;
    text-align: center;
    z-index: 1000;
    /* Ensure the navbar is above other elements */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;

}

.brand {
    color: #fcf5dc;
    font-size: 24px;
    text-transform: uppercase;
}

.brand a {
    color: #fcf5dc;
    text-decoration: none;
}


.navbar-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    opacity: 1;
    /* Initially visible */
    transition: opacity 0.5s ease;
    /* Fade transition */
}

.navbar-menu.hidden {
    opacity: 0;
    /* Hidden state */
    pointer-events: none;
    /* Disable clicks when hidden */
}

.navbar-menu li {
    margin-left: 20px;
}

.navbar-menu li:first-child {
    margin-left: 0;
}

.navbar-menu li a {
    color: #fcf5dc;

    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-menu li a:hover {
    background-color: #b8860b;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
}

.navlogo {
    height:120px;
    margin:-30%;
    padding-top:15px;
    margin-left: -50%;
}

.hamburger-menu .bar {
    width: 30px;
    height: 3px;
    background-color: #fcf5dc;

    transition: transform 0.3s ease;
}

.hamburger-menu.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(-45deg);
}

.hamburger-menu.open .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(45deg);
}

@media screen and (max-width: 920px) {
    .navbar {
        margin: 0 5%;
    }
    .navbar-menu {
        display: none;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
    }

    .navbar-menu.open {
        display: flex;
        flex-direction: column;
        background-color: #000;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        height: 100vh;
    }

    .navbar-menu.open li {
        text-align: center;
        margin: 10px 0;
    }

    .navbar-menu.open li a {
        padding: 10px 60px;
    }
}

/* main body */
#home-body{
    overflow-x:hidden;
}

/* Hero styles */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    /* overflow: hidden; */
    margin-bottom: 20%;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-width: 100%;
    /* Ensure the image covers the entire width */
    min-height: 100%;
    /* Ensure the image covers the entire height */
    object-fit: cover;
}

.hero h1 {
    font-size: 48px;
    text-align: center;
    text-transform: uppercase;
}

#discography {
    margin-top: -10%;
}

@media screen and (max-width: 920px) {
    .hero {
        margin-top: 10%;
        /* height: 200px; */
        margin-bottom: 20%;
    }

}

@media screen and (min-width: 401px) and (max-width: 558px) {
    .hero img {
        left: -130px; /* old banner -125 */
        width: 160%;
        scale: 62%;
        overflow: hidden;
    }
}

@media screen and (width <= 390px) {
    .hero img {
        left: -107px; /* old banner -125 */
        width: 160%;
        scale: 62%;
        overflow: hidden;
    }
}

/* Section styles */
.section {
    padding: 50px 0;
}

/* Flex grid styles */
.flex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* About Section */

#about {
    margin-top: -5%;
}

.about-bg {
    margin-left: 25%;
    margin-right: 25%;
    margin-bottom: 20%;
}

.about-text {
    font-size: 28px;
    text-align: center;
}

@media screen and (max-width: 920px) {

    #about {
        margin-top: -30%;
    }

    .about-bg {
        margin-left: 15%;
        margin-right: 15%;
        margin-bottom: 12%;
    }

    .about-text {
        font-size: 22px;
    }
}

/* 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;
}

.carousel-button.prev {
    left: -10px;
}

.carousel-button.next {
    right: -10px;
}

@media (max-width: 768px) {
    .carousel-item {
        min-width: 100%; /* Show 1 item at a time on smaller screens */
    }
    .carousel-button {
        font-size: 25px;
    }
}

/* Discography OLD CODE REPLACED WITH CAROUSELS */
.listen-button {
    display: block;
    width: 100%;
    padding: 10px 0;
    background-color: #b8860b;
    color: #fcf5dc;

    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.listen-button:hover {
    background-color: #ffd700;
}

.hero-button {
    width: 30%;
    margin-top: 6%; 
    margin-left: 35%; 
    border-radius: 5px; 

    display: block;
    padding: 10px 0;
    background-color: #b8860b;
    color: #fcf5dc;

    text-align: center;
    text-decoration: none;
    border: none;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #ffd700;
}

@media screen and (max-width: 920px) {
    .hero-button {
        width: 70%;
        margin-top: 14%;
        margin-left: 16%;
    }
}

/* Photos */

.poster-box {
    flex-basis: 30%;
    width: 600px; /* 500 */
    height: 800px; /* 650 */
    margin: 8px 8px -40px 8px;
    background-color: #000;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    opacity: 0.85;
    transition-property: transform, opacity;
    transition-duration: .3s;
    transition-timing-function: ease;
}


.poster-box img {
    width: 100%;
    height: 100%; /* Adjust height to leave space for text */
    object-fit: cover;
    object-position: top;
}

.media-box {
    flex-basis: 30%;
    width: 600px; /* 500 */
    height: 900px; /* 650 */
    margin: 8px 8px -40px 8px;
    background-color: #000;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    opacity: 0.85;
    transition-property: transform, opacity;
    transition-duration: .3s;
    transition-timing-function: ease;
}


.media-box img {
    width: 100%;
    height: 60%; /* Adjust height to leave space for text */
    object-fit: cover;
    object-position: top;
}

.media-box p {
    text-align: center;
    font-weight: bold;
    font-size: 26px;
    color: #fcf5dc;
 /* White text color */
    margin-top: 16px;
    margin-bottom: 15px;
}

.media-box p.description {
    font-size: 18px; /* Smaller font for the description */
    color: #ccc; /* Light grey color for the description */
    margin-top: 2px;
    text-align: center;
}


@media screen and (max-width: 920px) {
    .poster-box {
        flex-basis: 100%;
    }
    .media-box {
        height: 750px;
        width: 300px;
        flex-basis: 80%;
        margin-bottom: 40px;
    }
    .media-box img {
        width: 100%;
        height: 66%; /* Adjust height to leave space for text */
        object-fit: cover;
        object-position: top;
    
    }
    
    .media-box p {
        text-align: center;
        font-weight: bold;
        font-size: 18px;
        color: #fcf5dc;
 /* White text color */
        margin-top: 16px;
        margin-bottom: 8px;
    }
    
    .media-box p.description {
        font-size: 14px; /* Smaller font for the description */
        color: #ccc; /* Light grey color for the description */
        margin-top: 2px;
        text-align: center;
    }
}


.media-box:hover {
    transform: translateY(-5px);
    /* Move the box up on hover */
    opacity: 1;
}


@media screen and (max-width: 1044px) {
    .media-box {
        flex-direction: row;
        width: 162px;
    }

}

/* AbsentSound Box */
.absentsound-box {
    width: 25%; 
    height:558px;
}

@media (max-width: 768px) {
    .absentsound-box {
        width: 75%; 
        height:558px;
    }
}


/* HOME PAGE PHOTOS */
.photo-box {
    flex-basis: 25%;
    width: 500px; /* 500 */
    height: 550px; /* 650 */
    margin: 8px 8px 8px 8px;
    background-color: #000;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    opacity: 0.85;
    transition-property: transform, opacity;
    transition-duration: .3s;
    transition-timing-function: ease;
}


.photo-box img {
    width: 100%;
    height: 100%;
    margin-bottom: 8px;
    object-fit: cover;
}


@media screen and (max-width: 920px) {
    .photo-box {
        height: 600px;
        width: 300px;
        flex-basis: 90%;
    }
    .flex-grid{
        flex
    }
}

.photo-box:hover {
    transform: translateY(-5px);
    /* Move the box up on hover */
    opacity: 1;
}


@media screen and (max-width: 1044px) {
    .photo-box {
        flex-direction: row;
        width: 162px;
    }

}

/* SLIDESHOWS */
.slideshow-mobile {
    display: none;
}
.slideshow-container {
    position: relative;
    max-width: 600px;
    margin: 20px;
    margin-left: 35%;
}

.slide {
    position: relative;
    overflow: hidden;
    width: 600px; /* 500 */
    height: 700px; /* 650 */
    background-color: #000;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    opacity: 0.85;
}

.slide img {
    width: 100%;
    height: 100%;
    margin-bottom: 8px;
    object-fit: cover;
    transition: opacity 0.5s ease; /* Transition for opacity */
}

.slide img.active {
    opacity: 1; /* Fully visible when active */
}


.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
}

#prevBtn {
    left: -30px;
}

#nextBtn {
    right: -30px;
}

.thumbnail-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    overflow-x:hidden;
}

.thumbnail {
    width: 60px;
    height: 55px;
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.6;
}

.thumbnail:hover {
    transform: translateY(-5px);
    opacity: 1;
}


@media (width <= 768px) {
    .slideshow-mobile {
        display:block ;
    }
    .desktop-photo {
        display: none;
    }
    .slide {
        width: 340px;
        height: 500px;
        margin-left: -40%;
    }
    #prevBtn {
        left: -50%;
    }
    
    #nextBtn {
        right: -2%;
    }
}

@media (width < 414px) {
    .slideshow-mobile {
        display:block ;
    }
    .desktop-photo {
        display: none;
    }
    .slide {
        width: 280px;
        height: 500px;
        margin-left: -38%;
    }
    #prevBtn {
        left: -50%;
    }
    
    #nextBtn {
        right: -4%;
    }
}


/* Show list styles */
.show-list {
    display: flex;
    flex-direction: column;
}

.show-item {
    background-color: #000;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: 0 100px;
    /* Add margin on both left and right sides */
}

@media screen and (max-width: 920px) {
    .show-item {
        margin: 0 8px;
    }
}

.show-item p {
    font-size: 18px;
    margin-bottom: 10px;
}

.show-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.show-item+.show-item {
    border-top: 1px solid #222;
    padding-top: 20px;
}

.tickets-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 8px 15px;
    background-color: #b8860b;
    color: #fcf5dc;

    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.tickets-button:hover {
    background-color: #ffd700;
}


/* 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: 100%;
    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;
}

/* Social buttons styles */
.social-buttons {
    text-align: center;
    margin-top: 20px;
}

.social-buttons a {
    display: inline-block;
    margin-right: 10px;
    color: #fcf5dc;

    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s ease;
}

/* .social-buttons a:hover {
    color: #ffd700;
} */

.ig-button:hover {
    color: #ff5093;
}

.fb-button:hover {
    color: #1654ff;
}

.sp-button:hover {
    color: #00ff37;
}

.bc-button:hover {
    color: #00b7ff;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #000;
    color: #fcf5dc;

}

footer p {
    font-size: 14px;
}


/* ABOUT PAGE */

.about-hero {
    background: url('data/media/legacy.jpeg') center/cover no-repeat;
    color: white;
    text-align: center;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: auto;
}

.about-section {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.image-container {
    flex: 1;
    text-align: center;
}

.about-image {
    max-width: 600px; /* Increase the maximum width */
    width: 600px; /* Allow scaling for responsiveness */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-left: -40%;
}

.image-subtext {
    display: block;
    margin-top: 0.5rem;
    color: gray;
    font-size: 0.9rem;
    text-align: center;
    margin-left: -40%;
}

.about-text {
    margin-left: 20px;
    flex: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    body{ 

    }
    .about-content {

    }
    .about-hero {
        background-size: contain; 
        background-position: center top; 
        height: 100vh; 
        padding: 20px;
        margin-top: 20%;
        margin-bottom: -60%;
    }
    .about-image {
        max-width: 600px;
        width: 100%;
        margin-left: 0;
    }

    .image-subtext {
        margin-left: 0;
    }
    
    .about-text {
        margin-left: 0;
        flex: 2;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
        overflow: hidden; 
    }

    .image-container {
        margin: auto;
    }
    #about-body{
        overflow-x: hidden;
    }
}
