body, html {
    margin: 0;
    padding: 0;
    position: relative;
    color: #d4af37;
    background-color: black;
}


/* General reset */
* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Bungee';
    src: url('../fonts/Bungee-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Apply the font to your body or specific elements */
body {
    font-family: 'Bungee', sans-serif;
}


/* Header */
header {
    width: 100%;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    position: relative;
    top: 0;
    left: 0;
}

/* Navigation */
.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-list li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    color: #FEF8AC;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-list li a:hover {
    color: rgb(255, 0, 0);
}

/* Updated Background Section */
.background-section {
    background-image: url('../photos/background-1.jpg'); /* Absolute path from public_html */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Fixes the background image */
    position: relative; /* Allows text overlay */
    min-height: 100vh; /* Ensure it fills the viewport */
    padding-top: 12px; /* Pushes content below the navbar */
}

.background-section h1 {
    margin-top: 0px;
    font-size: 3em;
    color: #f6f2f2;
    font-family: 'Bungee', sans-serif;
    text-align: center;
}

/* Calendar Styles */
#calendar {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto; /* Center the calendar */
    padding-top: 0px; /* Adjust this value to move the calendar down */
    display: flex;
    flex-direction: column;
    gap: 0px;
}


.month-container {
    padding: 20px;
    background-color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.month-title {
    font-size: 1.5em;
    color: #d4af37;
    text-align: center;
    margin-bottom: 10px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    background-color: #222;
    padding: 10px;
    border-radius: 8px;
}

.day-header, .day-cell {
    padding: 10px;
    background-color: #444;
    color: #d4af37;
    text-align: center;
    border-radius: 4px;
}

.day-cell {
    min-height: 80px;
    position: relative;
}

.gig-item {
    display: inline-block;
    font-size: 1em;
    color: #d4af37;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 8px;
    text-align: center;
    margin-top: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.gig-item:hover {
    background-color: #ff3333;
    color: #ffffff;
    cursor: pointer;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 1000;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background: #333;
    color: #d4af37;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    display: none;
    z-index: 1001;
}

.modal-content {
    margin-bottom: 20px;
}

.modal h2 {
    color: #fff;
}

.modal button {
    padding: 8px 16px;
    background-color: #d4af37;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal button:hover {
    background-color: #ff3333;
}

/* For screens 768px and smaller */
@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        gap: 5px;
    }

    .nav-list li a {
        font-size: 16px;
    }

    .calendar-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns for tablet view */
    }
    #calendar {
        margin-top: 20px;
        max-width: 100%;
    }
    .month-title {
        font-size: 1.1em; /* Smaller month title */
    }
    
    .calendar-grid {
        gap: 2px;
    }

    .day-header, .day-cell {
        padding: 4px;
        border-radius: 4px;
        font-size: 0.5em; /* Smaller font for mobile */

    }
    .day-cell {
        min-height: 45px; /* Reduced cell height */
    }
    
    .background-section {
        background-image: url('../photos/phonebackround2.webp'); /* Mobile background */
        background-size: cover;
        background-position: center;
        background-attachment: scroll; /* Prevent fixed background on mobile */
    }
    .socials-container {
        position: static;
        transform: none;
        background-color: transparent;
        padding: 10px 0;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }
    .sidebar {
        display: flex;
        gap: 20px;
    }
}



@media (max-width: 480px) {
    header {
        padding: 1px 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 5px;
    }

    .nav-list li a {
        font-size: 14px; /* Smaller font size for mobile */
    }

    .background-section {
        background-image: url('../photos/phonebackround2.webp');
        background-size: contain;
        background-position: center top;
        min-height: 100vh;
    }

    .calendar-grid {
        grid-template-columns: repeat(7, 1fr); /* 2 columns for small screen */
    }
    
    #calendar {
        width: 100%; /* Make the calendar take up the full width */
        padding: 0 5px; /* Add padding to the sides */
        margin-top: 10px;
    }
    
    .day-header, .day-cell {
        padding: 8px; /* Reduce padding to fit better on smaller screens */
        
    }
    .month-title {
        font-size: 1.2em; /* Slightly smaller font for the title */
    }
    .day-cell {
        min-height: 60px; /* Make cells smaller on mobile */
    }
    
    .socials-container {
        position: static;
        transform: none;
        background-color: transparent;
        padding: 10px 0;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }
    .sidebar {
        display: flex;
        gap: 20px;
    }
    
}





