* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #74EBD5, #9FACE6);
    color: #fff;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.header, .content, .footer { 
    position: relative; z-index: 1; /* Ensure these elements are above the background shapes */ 
}

.header {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.logo {
    max-width: 1000px;
    height: auto;
    margin-left: 100px;
}

.navbar {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    flex-wrap: wrap;
    border-bottom: 3px solid #D5C8C8;
    border-top: 3px solid #D5C8C8;
    background-color: #ffffff;
    height: 35px;
    width: 100%;
    padding: 5px 0;
    margin: 0;
}

.navbar .nav-link {
    text-decoration: none;
    font-size: 16px;
    color: #1E2022;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Outfit', Verdana, Lucida;
    margin-top: 1px;
    background: none;
    border: none;
}

.navbar .nav-link:hover {
    color: #FF6347;
    transform: scale(1.1);
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 20px;
    gap: 20px;
    min-height: calc(100vh - 180px);
}

.content p {
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

.schedule-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
    width:100% ;
}

.schedule {
    display: flex;
    flex-direction: column;
    max-width: 60%;
    flex: 1;
}

.schedule .shed-text {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2px;
    margin-left: 0;
    text-align: left;
    margin-top: 50px;
}

.schedule .text {
    font-size: 1.3rem;
    margin-top: 3px;
    margin-bottom: 0;
    margin-left: 0;
    text-align: justify;
    color: #1E2022;
}

.calendar {
    flex: 0 1 auto; 
    max-width: 30%; 
    text-align: center;
}

.calendar img {
    width: 100%;
    height: auto;
    max-width: 300px;
    margin-right: 30px;
    
}

.day {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    margin-top: 50px;
    width: 100%;
}

.day .day-header {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.events {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin: 30px;
}

.event {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    margin: 0 15px; /* Add some margin between events */
}

.event img {
    width: 100%;
    max-width: 450px;  /* Makes the image larger */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.day .event-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 30px;
}

.band-photo{
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.band-photo:hover {
    transform: scale(1.05);
}

.day .event-time {
    font-size: 1.3rem;
    margin-top: 5px;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    background-color: white;
    border-top: 3px solid #D5C8C8;
    font-family: 'Inter', Verdana;
    font-size: 0.9rem;
    color: #1E2022;
    width: 100%;
    margin-top: auto;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-bottom: 5px;
    margin-top: 3px;
}

.social-media img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease-in-out;
}

.footer p {
    margin-top: 1px;
}

.main {
    position: relative; 
    width: 100%;
    height: 100vh;
}

.background-shapes {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none; 
}

.header, .content, .footer {
    position: relative; 
    z-index: 1; 
}



.header, .content, .footer {
    z-index: 1;
}

.shape {
    position: absolute;
    border: 3px solid rgba(255, 255, 255, 0.25); 
    background: none;
    border-radius: 0; 
}

/* Circles */
.shape.circle {
    border-radius: 50%;
}

/* Squares */
.shape.square {
    border-radius: 0;
}

/* Triangles */
.shape.triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(255, 255, 255, 0.25); /* Semi-transparent triangle */
}


@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .content {
        padding: 10px;
    }

    .logo {
        max-width: 500px;
        height: auto;
        margin-left: 50px;
    }

    .schedule {
        max-width: 100%; /* Full width for smaller screens */
        text-align: center; /* Centers the text */
    }

    .schedule-container {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
    }
    .calendar{
        max-width: 100%;
    }

    .calendar img {
        max-width: 200px;
        
    }

    .events {
        flex-direction: column;
        align-items: center;
    }

    .event {
        margin-bottom: 20px;
    }

    .shape {
        width: 60px; /* Adjust size for smaller screens */
        height: 60px;
    }

    .day .day-header {
        font-size: 2.2rem;
    }

    .schedule .shed-text {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 2px;
        margin-top: 15px;
    }

    .schedule .text {
        font-size: 1rem;
        margin-top: 2px;
    }

}

@media (max-width: 480px) {
    .navbar .nav-link {
        font-size: 10px;
        padding: 3px;
    }

    .navbar {
        gap: 3px;
        flex-direction: column;
        align-items: center;
    }

    .navbar .nav-link {
        font-size: 10px;
        padding: 1px;
    }

    .content {
        align-content: center;
        justify-content: center;
        gap: 15px;
        padding: 15px;
    }

    .logo {
        max-width: 500px;
        height: auto;
        margin-left: 50px;
    }

    .schedule {
        max-width: 100%; /* Full width */
        text-align: center; /* Centers text for mobile */
    }

    .schedule .shed-header {
        font-size: 1.5rem;
    }

    .schedule-container {
        flex-direction: column; /* Ensure stacking on very small screens */
        align-items: center;
    }

    .calendar {
        max-width: 100%; /* Full-width for smaller screens */
    }

    .calendar img {
        max-width: 120px; /* Shrinks further for mobile screens */
        
    }

    .footer {
        padding: 5px;
        font-size: 0.8rem;
    }

    .social-media img {
        width: 20px;
        height: 20px;
    }

    .shape {
        border-width: 1px; 
        width: 50px; 
        height: 50px;  
    }

    .day .day-header {
        font-size: 1.8rem;
    }

    .schedule .shed-text {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 2px;
        text-align: left;
        margin-top: 20px;
    }

    .schedule .text {
        font-size: 0.9rem;
        margin-top: 2px;
    }
}



