html,
body {
    width: 100%;
    height: 100%;
    color: #ffffff;
    background-color: rgb(0, 0, 0);
    background-image: url(../media/background.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: 700;
}


.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;

    font-size: 14px;
    padding: 10px 50px;
    margin: 0 auto;
    position: fixed;
}

/* Align heading to the left */
.nav-bar h2 {
    margin-right: auto;
    color: white;
}

/* Centering the nav links */
.nav-bar ul {
    display: flex;
    justify-content: flex-end;
    /* Aligns the nav items to the right */

    list-style-type: none;
    padding: 0;
    margin: 0;
}


.nav-bar li {
    margin-left: auto;
    margin-right: 100px;
}

/* Push bbutton to the far right */
.nav-bar .btn {
    padding: 10px 20px;
    border: 2px solid #c69321;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;

}

.nav-bar .btn:hover {
    background-image: linear-gradient(to right top, #7a4e22, #8e5e23, #a26e24, #b48023, #c69321);
}


.hero {
    display: flex;
    position: relative;




}


.newyear-container {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    align-content: center;
    align-self: center;

    left: 630px;
    top: 50px;
    width: 300px;
    height: 400px;
}

.newyear-container h1 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    position: absolute;
    font-size: 12.5rem;
}

.newyear-container h1:nth-of-type(1) {
    top: 0%;
}

.newyear-container h1:nth-of-type(2) {
    left: 58%;
    bottom: -58%;
}

.newyear-container h1:nth-of-type(3) {
    top: -25%;
    right: -10%;
}

.newyear-container h1:nth-of-type(4) {
    right: -34%;
    bottom: -51%;
}

.event-info {
    text-align: center;
    margin-top: 150px;
}

.event-info p {
    font-size: 1.5rem;
    color: white;
    margin: 5px 0;
}



.buttons-container {
    display: flex;
    justify-content: center;
    grid-column: 2/3;
    /* push button to the right container*/


}


/* Styling for both buttons */
.buttons-container .btn {
    padding: 10px 30px;
    margin: 0 10px;
    background-image: linear-gradient(to right top, #c69321, #b48023, #a26e24, #8e5e23, #7a4e22);
    background-color: transparent;
    /* Ensure no background color is set */
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

/* Hover effect for the buttons */
.buttons-container .btn:hover {
    background-image: linear-gradient(to right top, #7a4e22, #8e5e23, #a26e24, #b48023, #c69321);
}

.section-content1 {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;

    margin-top: 150px;
    margin-right: 64px;
    margin-bottom: 150px;
    margin-left: 64px;

}

.layout-grid1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    grid-column-gap: 56px;
    align-items: center;

    grid-template-rows: auto;
    grid-row-gap: 56px;

    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    align-items: start;
    width: 100%;
    max-width: 1340px;
    margin-left: auto;
    margin-right: auto;

}

section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

section div.content1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contenth1 {
    font-size: 40px;
    margin-bottom: 10px;
}



section p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

section .buy-tickets {
    padding: 10px 20px;
    background-image: linear-gradient(to right top, #c69321, #b48023, #a26e24, #8e5e23, #7a4e22);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;

    border: none;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    display: flex;
}

.swapgrid1 {
    grid-column: 2/3;
    /* Push button within grid to next column */
}



.content2 {
    grid-column: 1/2; 
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contenth2 {
    transition: color 0.3s ease, transform 0.3s ease;
}

.contenth2:hover {
    color: #c69321; 
    transform: scale(1.1); 
}

/*style Agenda section*/
.content2 {
background: rgba(0, 0, 0, 0.6); 
border-radius: 15px;
backdrop-filter: blur(10px); 
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 
}



/* Hover effect on <p> */
li:nth-child(1) p:hover {
    background-color: rgba(255, 204, 0, 0.3); /* Darker yellow on hover for Day 1 */
    transform: scale(1.05);
}

li:nth-child(2) p:hover {
    background-color: rgba(102, 204, 102, 0.3); /* Darker green on hover for Day 2 */
    transform: scale(1.05);
}

li:nth-child(3) p:hover {
    background-color: rgba(51, 153, 255, 0.3); /* Darker blue on hover for Day 3 */
    transform: scale(1.05);
}

/* Hover effect on Images */
.swapgrid1 img:nth-child(1):hover {
    filter: drop-shadow(0 0 15px yellow);
    transform: scale(1.05); /* Slight zoom on hover */
    opacity: 0.9;
}

/* Day 2: Green shade on hover */
.swapgrid1 img:nth-child(2):hover {
    filter: drop-shadow(0 0 15px green);
    transform: scale(1.05); /* Slight zoom on hover */
    opacity: 0.9;
}

/* Day 3: Blue shade on hover */
.swapgrid1 img:nth-child(3):hover {
    filter: drop-shadow(0 0 15px blue);
    transform: scale(1.05); /* Slight zoom on hover */
    opacity: 0.9;
}


/*style headings*/

.content1 h1, .content2 h1 {
    font-size: 2.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
    transition: color 0.3s ease, text-shadow 0.3s ease; 
}

/* Hover effect for contenth1 */
.content1 h1:hover, .content2 h1:hover {
    color: #c69321; /* Gold color on hover */
    text-shadow: 0 0 10px #c69321, 0 0 20px #c69321, 0 0 30px #c69321; /* Glow effect */
    transform: scale(1.1); 
}

/* Focus effect for contenth1 */
.content1 h1:focus, .content2 h1:focus {
    outline: none; /* Remove default outline */
    color: #c69321; /* Gold color on focus */
    text-shadow: 0 0 10px #c69321, 0 0 20px #c69321, 0 0 30px #c69321; /* Glow effect */
    transform: scale(1.1); 
}

.buttons-container2 {
    display: flex;
    justify-content: center;
}


.buttons-container2 .btn {
    padding: 10px 30px;
    margin: 0 10px;
    background-image: linear-gradient(to right top, #c69321, #b48023, #a26e24, #8e5e23, #7a4e22);
    background-color: transparent;
    /* Ensure no background color is set */
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: background-color 0.3s ease;
}


/* Key Performers Section */
.content3 {
    margin: 100px auto;
    padding: 50px;
    background-color: rgba(0, 0, 0, 0.8); 
    border-radius: 20px;
    text-align: center;
    color: white;
}

.content3 h1 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-shadow: 0 0 10px #c69321;
}


.performer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.key-performers {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1); 
    padding: 20px;
    border-radius: 10px;
}

.key-performers img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid #c69321; 
}

.key-performers h2 {
    margin-top: 15px;
    font-size: 1.5rem;
}

.key-performers p {
    font-size: 1rem;
    color: #fff;
}




.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8); 
    color: #ffffff;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    border-top: 2px solid #c69321; 
    transition: box-shadow 0.3s ease;
}

.footer:hover {
    box-shadow: 0 0 20px #c69321, 0 0 30px #c69321, 0 0 40px #c69321; 
}