* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0c120c;
    color: #ffffff;
    font-family: "Inter", san-serif;
    font-weight: 400;
}

h1, h2, h3, .display-text {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
}

p, a, li {
    font-family: "Inter", sans-serif;
} 

.page-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.logo img {
    width: 140px;
    height: auto;
}

.site-header, .main-nav {
    display: flex;
}

/*NAVIGATION BAR SECTION*/

.main-nav {
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    padding-top: 30px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.5px;
}

.main-nav a.active{
    border-left: 3px solid #d6001c;
    padding-left: 8px;
}

.main-nav a:hover {
    color: #d6001c;
}

/*HERO IMAGE SECTION*/

.hero {
    background-image: url("../images/concert-stage.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%px;
    height: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 20px;
}

.hero-content h1 {
    font-size: 150px;
    line-height: 0.95;
    font-weight: 900;
    text-shadow: -5px 5px 0 #d6001c;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 50px;
    font-weight: bold;
    text-shadow: -2px 2px 5px rgba(0, 0, 0, 0.5);
}

/*ABOUT THE FESTIVAL SECTION*/

.about-section {
    width: 100%;
    display: flex;
    margin: 0 auto;
}

.about-card {
    background-color: #6d7275;
    padding: 125px 150px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-text {
    padding: 20px 50px;
    line-height: 1.6;
    max-width: 500px;
}

.about-text p {
    font: 16px;
    margin-bottom: 30px;
}

.about-section h2 {
    font-size: 40px;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.button {
    margin: 40px auto;
    text-align: center;
}

.cta {
    background-color: #d6001c;
    padding: 5px 30px;
    display: inline-block;
    border-radius: 5px;
    font-size: 20px;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
    text-decoration: none;
    color: #ffffff;
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.5);
}

.cta:hover {
    color: #d6001c;
    background-color: #ffffff;
}

.about-image {
    background-image: url("../images/instruments.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: Left;
    width: 50%;
    min-height: 500px;
}

/*FEATURED ARTISTS SECTION*/

.featured-artists {
    text-align: center;
    padding: 70px 20px 30px;
}

.featured-artists h2 {
    font-size: 40px;
    margin-bottom: 35px;
}

.artist-card-container {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.artist-card {
    width: 220xpx;
    background-color: #6d7275;
    border-radius: 10px;
    overflow: hidden;
}

.artist-card img {
    width:100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.artist-info {
    padding: 12px 10px;
}

.artist-info h3 {
    font-size: 20px;
    margin-bottom: 2px;
}

.artist-info p {
    font-size: 10px;
}

/*GET INVOLVED SECTION*/

.involved-section {
    display: flex;
    justify-content: center;
    background-color: #191b1b;
    gap: 40px;
    padding: 70px 20px 70px;
    flex-wrap: wrap;
}

.involved-card {
    position: relative;
    width: 340px;
    height: 430px;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
}

.involved-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.involved-card h2 {
    position: absolute;
    text-align: center;
    align-items: center;
    left: 30%;
    bottom: 25px;
    color: #ffffff;
    font-size: 40px;
    text-shadow: -2px 2px 5px rgba(0, 0, 0, 0.5);
}

/*THIS COULD BE YOU SECTION*/

.cta-section {
    background: url("../images/performer.jpg");
    min-height: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;  
}

.cta-content h1 {
    font-size: 100px;
    line-height: 0.95;
    font-weight: 900;
    text-shadow: -5px 5px 0 #d6001c;
    margin-bottom: 20px;
}

/*FOOTER*/

footer {
    background-color: #d6001c;
    text-align: center;
    width: 100%;
    padding: 50px 20px 30px;
}

.footer-responsive {
    max-width: 1200px;
    margin: 0 auto;

}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 45px;
}

.social-icons img {
    width: 28px;
    height: 28px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-bottom: 35px;
}

.footer-column h3 {
    font-size: 25px;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
}

.footer-column a:hover {
    color: #0c120c;
}

.copyright p {
    font-size: 10px;
}