
body {
    background: linear-gradient(to right, #f8b400, #fce38a); /*Vintage yellow gradient*/
    
    
    font-family: 'Courier New', Courier, monospace; /* Monospace font for retro feel */
    color: #333; /* Default text color */
}


/* /////////////////////////////    interactive nav bar when hover  ///////////////////////////////////////////*/

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}

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

header nav ul li a {
    color: #f9f9f9; 
    text-decoration: none;
    font-size: 1.3em; /* navigation bar words */
    padding: 10px; 
    transition: color 0.3s, transform 0.3s; 
    display: inline-block; 
    position: relative; /* Allows for absolute positioning of child elements */
}

/* Hover effect       THE (:) change colour when click -while- (.) is when the thing is active*/
.nav-links li a.hover,
.nav-links li a:hover {
    text-decoration: underline; 
    transform: translateY(-6px); 
    color: #F3C623; 
}

/* Ensure the rest of the layout is not affected */
.nav-links li a.active,
.nav-links li a:active {
    text-decoration: underline; 
    transform: translateY(0px); 
    color: #F3C623; 
    
}

/* /////////////// -Navbar styles- ///////////////////*/
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    background-color: #10375C; /* Darker gray for navbar */
    
    padding: 15px 30px;
    padding: 18px;
    font-family: 'Courier New', Courier, monospace;
    
}
.navbar a:hover {
    background-color: #d98550;
    color: #4a3f35;
    border-radius: 8px;
}


/* Styling for the moving logo image */
.logo img {
    width: 100px;  
    height: auto;  
    background-color: #655aff;
    border-radius: 10px;
    position: relative;
    animation: logoAnimation 1.5s infinite;
}
@keyframes logoAnimation {
    0% {
        transform: translate(0, 0);
        filter: brightness(90%);}
    15% {
        transform: translate(-3px, -3px);
        filter: brightness(130%);
    }
    30% {
        transform: translate(2px, 4px);
        filter: brightness(90%);
}
    45%{
        transform: translate(-1px, 2px);
        filter: brightness(125%);
    }
    60% {
        transform: translate(3px, -4px);
        filter: brightness(75%);
    }
    100% {
        transform: translate(0, 0);
        filter: brightness(110%);}
}


.logo a {
    color: white;
    text-decoration: none;
    font-size: 24px;
}


.dash{
    border: 3px dashed #4a4a4a;
    
}

/* Section styles */
section {
    margin: auto;
    max-width: 95%;
    text-align: center;
    padding: 20px;

}

h2 {
    color: #2c3e50; /* Dark Blue for headings */
    text-shadow: 
        0 0 5px rgba(44, 62, 80, 0.5), /* Soft dark blue glow */
        0 0 10px rgba(44, 62, 80, 0.7), /* Stronger dark blue glow */
        0 0 15px rgba(44, 62, 80, 1); /* Brightest dark blue glow */
}


p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333; /* Dark text for readability */
}

/* Footer styles */
footer {
    background-color: #c1c1c1; /* Light gray footer */
    color: #222; /* Darker text color */
    text-align: left;
    padding: 20px; /* Added padding for better spacing */
    border-top: 5px solid #4a4a4a; /* Top border for separation */
}

footer p {
    margin: 0; /* Reset margin for consistent spacing */
}

/* Home Page Styles (index.html) */

/*spinning song disk*/
#index_spinningimages {
    height: 400px;
    width: auto;
    display: block;
    margin: auto;
    animation: spin 10s linear infinite;
    box-shadow: none;
    
}

@keyframes spin {
    from {
        transform: rotate(0deg); 
    }
    to {
        transform: rotate(360deg); 
    }
}

@media only screen and (max-width: 600px) {
    #index_spinningimages {
        height: 200px; 
    }

    section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; 
        text-align: center; 
        padding: 10px; 
    }

    .page_title {
        font-size: 24px; 
    }
}

.home-intro {
    background-color: #e3f2fd; 
    padding: 50px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
    
}


.page_title{
    font-size: 2.5em;
    color: #ff5722; 
    padding: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); 
 
}

section p, section ul {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
}

section ul {
    list-style-type:decimal-leading-zero; /* Circular bullets for lists   -     NEED TO CHANGE */
    margin-left: 20px;
}

section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    border: 5px solid #4459a8; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section img:hover {
    transform: scale(1.05); 
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); 
}

/* Contact Page Styles (contact.html) and for some other pages  */
form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 20px auto;
    background-color: #f0f0f0; 
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form label {
    margin-top: 10px;
    font-weight: bold;
    color: #4a4a4a;
}

form input,
form textarea {
    padding: 10px;
    margin-top: 5px;
    border: 2px solid #4a4a4a;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
}

    #thankYouMessage {
        margin-top: 20px;
        font-size: 1.2em;
        color: rgb(9, 185, 9);
        text-align: center;
    }


/* Responsive Navbar Styles */
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: 0.3s;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* when the screen width is lower than 768px it will  not show the navigation links to diff pages but instead it will show the hanbugure menu*/
        flex-direction: column;
        position: fixed;
        top: 109px;
        right: 0;
        background-color: #10375cd2; /* Darker background for dropdown */
        width: 100%;
        text-align: center;
        
        transition: 0.3s;
    }

    .nav-links li {
        padding: 10px 0;
    }

    .menu-icon {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        z-index: 9999;
    }
}
@media (max-width: 480px) {
    body {
        font-size: 0.8em; 
    }
    
    h2 {
        font-size: 1.4em; 
    }
}



/* Store Page Styles */
.store-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px; /* Space between items */
    
    padding-left: 2%;
    padding-right: 2%;
}

/* Box around Each item in the store */
.store-items .item {

    display: flex;
    flex-direction: column;
    justify-content: space-between; /* seperate the text content and buy button apart */
    background-color: #e039b74f;
    padding: 10%;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center; /* dont need, can dellllll need*/
    padding-top: 15%;
}

.store-items .item:hover {
    background-color: #b298ab; /* Light purple on hover */
}

/* //////////////////////////////////// */
/* Make product images the same size */
.item img {
    width: 250px; 
    height: 250px; 
    object-fit: cover; /* image retains its aspect ratio */
    border-radius: 5px;
    
    display: block; /* Makes the image behave as a block element */
    margin: 0 auto; /* centers the image */
    cursor: pointer;
}

/* Retro Items Modal style */
.modal {
    display: none; /* not shown at first */
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    text-align: center;
}


.modal-content img {
    width: 100%;
    height: auto;
}

.modal-content p {
    margin-top: 15px;
    font-size: 16px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover{
    color: black;
    cursor: pointer;
}

/* //////////////////////////////////// */
/* ------button hover ------------ ***  */

/* 3D Pop-up Button */
form button,
.button-container {
    margin: 20px auto;
    padding: 12px 25px;
    font-weight: bold;
    background-color: #d9534f;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2em;
    font-family: 'Courier New', Courier, monospace;
    
    /* 3D effect */
    box-shadow: 0 6px #8b4513; /* Shadow for 3D effect with darker shade */
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease; /* when refresh page the button will go into position */
    width: 150px; 
    height: 50px; 
}

/* Button hover effect */
form button:hover,
.button-container:hover {
    background-color: #d9534f; 
    transform: translateY(-4px); /* Moves the button up slightly to pop */
    box-shadow: 0 10px #8b4513; 
    font-family: 'Dancing Script', cursive; 
}

/* Button active effect (when clicked) */
form button:active,
.button-container:active {
    transform: translateY(2px); 
    box-shadow: 0 4px #8b4513; /* shadow for a pressed effect */
}


/*store page pop up*/
/* Modal Title */
#modalTitle {
    font-family: 'Playfair Display', serif; 
    font-size: 24px;
    color: #10375C; 
    text-align: center;
}

/* Short Description */
#modalShortDescription {
    color: #7c4d99; 
    font-weight: bold;
    text-align: center;
}

/* Long Description */
#modalLongDescription {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #333;
    margin: 10px 0;
}


#show_hyperlink {
    padding-bottom: 30px;
}


.button-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #235e96; 
    color: #d7d4ff; 
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 3px 3px 0 #10375C; 
    width: 70%;
    margin: 8px 0;
}

.button-link:hover {
    background-color: #10375C; 
    color: #655aff; 
    transform: translate(-2px, -2px); 
    box-shadow: 5px 5px 0 #44709c;
}

.button-link:active {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 #10375C;
}


.blue-button{
    display: inline-block;
    padding: 10px 20px;
    background-color: #235e96; 
    color: #d7d4ff; 
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 3px 3px 0 #10375C; 
    width: 70%;
    margin: 8px 0;
    border: none;
}

.blue-button:hover {
    background-color: #10375C; 
    color: #655aff; 
    transform: translate(-2px, -2px); 
    box-shadow: 5px 5px 0 #44709c;
}

.blue-button:active {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 #10375C;
}





.shows-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.716), rgba(132, 134, 119, 0.5)), url('https://img.freepik.com/premium-photo/symphony-instruments-vibrant-collage-musical-tools_435119-69168.jpg');
    background-size: cover;
    background-attachment: fixed;
    padding: 3%;
}

/* Flex container for each show item */
.show-item {
    display: flex;
    justify-content: space-between; /* This aligns the image and the content side by side */
    margin-bottom: 50px;
    padding: 40px;
    background-color: rgba(186, 187, 241, 0.855); /* Light background for better text readability */
    border-radius: 10px;
    flex-wrap: wrap;
}


.show-item:nth-child(even) {
    flex-direction: row-reverse; /* For even items, the text and image will switch places */
}

.show-item:nth-child(odd) {
    flex-direction: row; /* For odd items, the default order is maintained */
}

/* Styling for the image */
.show-image {
    display: flex;
    width: 40%; /* Adjust as needed */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



/* Hover effect: move the image up */
.show-image:hover {
    transform: translateY(-15px); /* Moves the image 10px upwards */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3); 
}


/* Styling for the show details */
.show-details {
    width: 50%; /* Adjust as needed */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
}

/* Show title styling */
.show-title {
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Gochi Hand', cursive; 
}

/* Show description styling */
.show-description {
    font-size: 17px;
    margin-bottom: 20px;
}

/* Buy ticket button styling */
.buy-ticket {
    margin: 20px auto;
   
    padding: 12px 25px;
    background-color: #d2691e; /* buy now buttion colour */
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2em;
    font-family: 'Courier New', Courier, monospace; /* Retro font ?? i guess */
    
    /* 3D effect */
    box-shadow: 0 6px #8b4513; /* Shadow for 3D effect with darker shade */
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease; 
  
    height: 50px;  
}

.buy-ticket:hover {
    background-color: #ff6347; 
    transform: translateY(-4px); 
    box-shadow: 0 10px #8b4513;
}


.ShowPast {
    margin: 20px auto;

    padding: 12px 25px;
    background-color: #b64f7f; /* buy now buttion colour */
    color: rgb(189, 175, 175);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2em;
    font-family: 'Courier New', Courier, monospace; 
    
    /* 3D effect */
    box-shadow: 0 6px #af1146; 
 
  
    height: 50px; 
   
}

#past-shows{
    margin-top: 50px;
}

/* Mobile view for responsiveness */
@media (max-width: 768px) {
    .show-item {
        flex-direction: column; 
        text-align: center;
        padding: 25px;
    }

    .show-image {
        width: 100%; 
        margin: 0 auto 2px auto; 
        height: auto; 
    }

    .show-details {
        width: 100%; 
        padding-left: 0; 
    }

    .show-title {
        font-size: 24px; 
    }

    .show-description {
        font-size: 13px; 
    }

    .buy-ticket {
        font-size: 1em; 
        height: 40px; 
    }
}



/* Filter for shows*/
.filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    padding: 10px;
    background-color: #e0dfd1;
    border: 2px solid #7a7a7a; 
    border-radius: 6px;
    width: 70%;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3); 
    font-family: 'Courier New', Courier, monospace; 
}

/* Label Styling */
.filter-label {
    font-size: 1.1rem;
    font-weight: bold;
    margin-right: 15px;
    color: #2c2c2c; 
}


/* Default styling for mobile screens */
.filter-dropdown {
    padding: 8px;
    font-size: 1rem;
    font-family: 'Courier New', Courier, monospace;
    border: 2px solid #7a7a7a;
    border-radius: 4px;
    background-color: #e0dfd1;
    color: #2c2c2c;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2);
    width: 300px;
    cursor: pointer;
}

/* Media query for non-mobile (larger) screens */
@media screen and (min-width: 768px) {
    .filter-dropdown {
        margin-right: 20px;
    }
}

.button-link {
    padding: 8px 16px; 
}

#store-filter-dropdown{
    margin-right: 100px;
}

.filter-dropdown:hover {
    background-color: #d1d0c2;
}

.filter-dropdown:focus {
    border-color: #525252; 
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .filter-container {
        flex-direction: column;
        width: 90%;
        background-color: #e0dfd1;
    }

    .filter-label {
        margin-bottom: 10px;
    }

    .filter-dropdown {
        width: 100%;
    }
}


#about p {
    font-size: 1.2em;
    color: #333; 
    line-height: 1.6; 
    max-width: 70%; 
    margin: 0 auto 40px; 
}

.band-members {
    padding: 5%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Responsive grid */
    gap: 30px; 
    margin-top: 55px; 
}

.member {
    background-color: #e039b74f; /*** background colour for image container*/
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Slight shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    
}

.member:hover {
    transform: translateY(-5px); /* Hover effect to lift up the card */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); 
    background-color: #b298ab;
}
.member img {
    width: 90%; /* Adjust the width to leave space on the sides */
    height: 90%;
    border-radius: 10px; 
    object-fit: cover; 
    max-height: 250px; 
    margin: 0 auto; 
    display: block; 
}


.member h3 {
    font-size: 1.8em;
    color: #d2691e; /* A vintage brown color for the member's name */
    margin-bottom: 10px;
    font-family: 'Courier New', Courier, monospace; /* Retro font */
}


/* Flexbox container for price and button */
.price-button-container {
    display: flex;
    align-items: center; /* Align price and button vertically */
    justify-content: space-between; /* Optional: adds space between elements */
}

/* Price styles */
.product-price {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1.8rem; /* Adjust for readability */
    color: #ffffff;
    font-weight: bold;
    padding-left: 7%;
}



