/* Apply Montserrat font to the entire body */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure body takes at least full viewport height */
    overflow: -moz-scrollbars-none; /* For older Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    scrollbar-width: none; /* For Firefox */
    color: #FFF;
    font-size: 16px; /* Base font size */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    header {
        width: 100%;
        height: auto;
        position: relative;
    }
    main {
        margin-left: 0;
        padding-top: 20px;
    }
    footer {
        width: 100%;
        left: 0;
    }
    .home h1, .about, .album, .tour, .contact {
        font-size: 1.5rem; /* Adjust for readability on smaller screens */
    }
    nav ul li a {
        padding: 10px 0;
    }
}

/* Header styling */
header {
    background: #000;
    color: #fff;
    width: 250px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    font-size: 1rem; /* Use rem for consistency */
}

/* Logo styling */
header .logo img {
    margin: 20px 0;
    width: 200px;
}

/* Navigation styling */
nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
}

nav ul li {
    width: 100%;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    display: block;
    width: 100%;
}

nav ul li a:hover {
    background: #555;
}

/* Main content area */
main {
    margin-left: 250px;
    padding: 20px;
    padding-bottom: 15vh; /* Increase padding to ensure footer doesn't overlap */
    flex: 1;
    background: url('background.jpg');
    background-size: cover; /* Cover ensures full background */
}

.gig-listings {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gig-item {
    display: flex;
    background-color: #211e1e;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Image and date overlay */
.gig-image {
    position: relative;
    width: 300px;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.date-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.date-overlay .date {
    font-size: 2em;
    font-weight: bold;
    line-height: 1em;
}

.date-overlay .month {
    font-size: 1.2em;
    text-transform: uppercase;
}

/* Gig details */
.gig-details {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gig-details h3 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
}

.gig-blurb {
    margin: 0 0 20px 0;
    font-size: 1em;
    color: #666;
}

/* Base button styling with smooth gradient */
.buy-tickets {
    background: linear-gradient(135deg, #ff0024, #ff0000); /* Blue gradient background */
    border: none; /* Remove default border */
    color: #ffffff; /* Text color */
    padding: 12px 24px; /* Padding inside the button */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline from links */
    display: inline-block; /* Inline block for proper padding */
    font-size: 16px; /* Font size */
    margin: 10px 0; /* Margin for spacing */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 8px; /* More rounded corners */
    transition: all 0.4s ease; /* Smooth transition for effects */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Slightly deeper shadow */
}

/* Hover effect with scaling */
.buy-tickets:hover {
    background: linear-gradient(135deg, #ff0000, #ff0024); /* Blue gradient background */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Deeper shadow on hover */
    transform: scale(1.05); /* Slightly larger on hover */
}

/* Focus effect */
.buy-tickets:focus {
    outline: none; /* Remove default outline */
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.5); /* Red focus ring */
}

/* Footer styling */
footer {
    font-size: 1rem; /* Use rem for consistency */
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    width: calc(100% - 250px);
    position: fixed;
    bottom: 0;
    left: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10; /* Ensure footer is above other content */
}

footer .social-media {
    display: flex;
    gap: 100px;
    margin-top: 10px;
}

footer .social-media a {
    color: #fff;
    text-decoration: none;
}

footer .social-media a:hover {
    text-decoration: underline;
}
