:root {
    --background-color: #F0E8E8; /* cream */
    --card-background: #F0E8E8; /* cream */
    --text-color:  #F0E8E8; /* cream */
    /*--text-color: #7572D0; /* Blue */
    /*--card-background: #F2B8AF; /* Peach */
    --card-text: #7572D0; /* Blue */
    --accent-color: #ff6b89; /* dark pink */
    /*#F4BFDC; /* light pink */
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #121132 0%, #ff6b89 100%);
    color: var(--text-color);
    line-height: 1.6;
}

nav {
    background-color: #121132;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav ul.nav-menu {
    list-style: none;
    padding: 15px 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav li {
    margin: 0 20px;
}

nav a {
    color: var(--background-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-color);
}

/* Hamburger Button */
.hamburger {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px;
    z-index: 1100;
    background: var(--background-color);
    border: 2px solid #121132;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #121132;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

section {
    padding: 61px 0;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

h1, h2 {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

h1 {
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--background-color);
    padding: 10px 20px;
    border-radius: 20px;
    z-index: 10;
    color: #121132;
    opacity: .8;
}

h2 {
    font-size: 2.5rem;
}

.header-image {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

#gigs-list {
    list-style: none;
    max-width: 800px; /* Increased for larger layout */
    width: 100%;
    padding: 0;
}

#gigs-list li {
    background: var(--card-background);
    color: var(--card-text);
    padding: 30px; /* Larger padding */
    margin: 20px 0; /* More spacing */
    border-radius: 10px; /* Softer corners */
    font-size: 1.4rem; /* Base font size larger */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

#gigs-list .gig-date {
    font-size: 3rem; /* Much larger date */
    font-weight: 700;
    margin-bottom: 10px;
}

#gigs-list .gig-venue {
    font-size: 2rem; /* Large venue */
    font-weight: 600;
    margin-bottom: 10px;
}

#gigs-list .gig-address a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.2rem;
}

#gigs-list .gig-address a:hover {
    text-decoration: underline;
}

#gigs-list .gig-time, #gigs-list .gig-description {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.bio-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1800px;
    width: 100%;
    gap: 20px;
}

.bio {
    background: var(--card-background);
    color: var(--card-text);
    padding: 20px;
    border-radius: 5px;
    width: 220px;
    text-align: center;
}

.bio img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.bio h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.poem {
    background: var(--card-background);
    color: var(--card-text);
    padding: 20px;
    margin: 20px 0;
    max-width: 600px;
    width: 100%;
    border-radius: 5px;
    white-space: pre-wrap;
}

.poem h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Swiper Styles */
.gallery-swiper {
    width: 100%;
    max-width: 1200px;
    height: 600px;
    background: none;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
    transition: transform 0.3s;
}

.swiper-slide img:hover {
    transform: scale(1.05);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--text-color);
    background: var(--header-overlay);
    border-radius: 5px;
    width: 40px;
    height: 40px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent-color);
}

.swiper-pagination-bullet {
    background: var(--text-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
}

.hidden {
    display: none;
}
/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    /* Header Image */
    .header-image {
        height: 50vh; /* Reduce height for mobile */
        background-size: contain; /* Ensure full image is visible */
        background-repeat: no-repeat;
    }

    h1 {
        font-size: 2rem; /* Smaller title */
        padding: 8px 15px; /* Reduced padding */
        width: 90%; /* Prevent overflow */
        max-width: 300px; /* Limit width */
        text-align: center;
        line-height: 1.2; /* Improve readability */
    }

    /* Hamburger Menu */
    .hamburger {
        display: block; /* Show on mobile */
        position: absolute;
        top: 10px;
        right: 10px;
    }

    nav ul.nav-menu {
        display: none; /* Hidden by default */
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 200px;
        background: var(--background-color);
        flex-direction: column;
        justify-content: flex-start;
        padding: 60px 20px 20px;
        margin: 0;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    nav ul.nav-menu.active {
        display: flex; /* Show when active */
        transform: translateX(0);
    }

    nav li {
        margin: 15px 0;
    }

    nav a {
        font-size: 1rem;
        color: #121132;
    }

    /* Adjust sections for better mobile spacing */
    section {
        padding: 60px 10px;
    }

    #gigs-list li {
        padding: 20px;
        font-size: 1.2rem;
    }

    #gigs-list .gig-date {
        font-size: 2rem;
    }

    #gigs-list .gig-venue {
        font-size: 1.5rem;
    }

    .gallery-swiper {
        height: 300px;
    }
}