@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500&display=swap');
*{
    margin: 0;
    padding: 0;
}
.Headliner{
  height: 50%;
  width: 50%;
  color: grey;  
  background-position: center;
}
.Day1{
  color: black;
  background-position: center;
}
.Day2{
  color: black;
  background-position: center;
}
.Day3{
  color: black;
  background-position: center;
}
.container p{
  font-weight:lighter;
  font-size: xx-large;
  font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  text-decoration: underline;
  text-align: center;
}

.container h2 {
  font-weight: lighter;
  font-size: xx-large;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  text-decoration: underline;
  margin-bottom: 20px;
}

.lineup {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap; /* responsive */
}

.artist {
  text-align: center;
  flex: 1 1 200px;   /* flexible sizing */
  max-width: 400px; /* prevents being too large */
}

.artist img {
  width: 100%;
  height: 220px;   /* fixed height for all */
  border-radius: 50%; /* keeps the oval/circle */
  object-fit: cover;  /* crops nicely to fit */
  display: block;     /* avoids inline spacing issues */
  margin: 0 auto;     /* center inside container */
}


.artist p {
  margin-top: 10px;
  font-size: x-large;
  font-weight: bold;
  color: black;
}



img{
  display: inline;
  border-radius: 50%;
  width: 300px;
}
a{
  text-align: right;
bottom: 30%;

}
marquee{
  white-space: nowrap;
}

/*------Header------*/
#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 100px;
    background-color: rgb(239, 242, 246);
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}
.logo{
    width:20%;
    display:flex;
    justify-content: center;
    align-items: center;
}
.logo img{
    width: 60%;
    border: 4px solid white;
    border-radius: 150px;
}

/*------Navbar------*/
#navbar{
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    cursor: pointer;
}

#navbar-list{
    width: 60%;
    background-color: lightslategray;
    display: flex;
    align-items: center;
}

#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a{
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    transition: 0.3s ease;
}

#navbar li a:hover{
    color: darkblue;
}

#navbar li a:hover::after{
    content: "";
    width: 30%;
    height: 2px;
    background: #088178;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

.checkbtn{
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;

}

/*------Background------*/
.background{
    background:rgba(0, 0, 0, 0.7) url('img/1.jpg');
    height:  100vh;
    width: 100%;
    background-size: cover;
}

.box-main{
    display: flex;
    justify-content: center;
    align-items: center;
    color:lightblue;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: auto;
    flex-direction: column;
    height: 80%;
}

.text-big{
    font-size: 41px;
}

.text-small{
    font-size: 18px;
}

.btn{
    background-image: url('img/14.jfif');
    background-color: transparent;
    color: black;
    border: 0;
    padding: 14px 20px 14px 28px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    margin: 0 90px;
    display: flex;
    justify-content: center;
    border-radius: 8px;
    margin: 50px 50px 50px 50px;
}

/*------Section------*/
.section{
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 80%;
    margin: auto;
    font-family: 'Ubuntu', sans-serif;
}

.section-Left{
    flex-direction: row-reverse;
}

.paras{
    padding: 0px 65px;
}
.sectionTag{
    padding: 16px 0;
}
.sectionSubTag{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.thumbnail img{
    width: 250px;
    border: 2px solid black;
    border-radius: 5px;
    margin-top: 10px;
}

/*------Footer------*/
  footer{
     background-color: #111;
  }
  .footerContainer{
    width: 100%;
    padding: 70px 30px 20px;
  }
  .socialIcons{
    display: flex;
    justify-content: center;
  } 
  .socialIcons a{
    text-decoration: none;
    padding: 10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
  }   
  .socialIcons a i{
    font-size: 2em;
    color: black;
    opacity: 0.9;
  }
  .socialIcons a:hover{
    background-color:#111;
    transition: 0.5s;
  }
  .socialIcons a:hover i{
    color: white;
    transition: o.5s;
  }
  .footerNav{
    margin: 30px 0;
  }
  .footerNav ul{
    display: flex;
    justify-content: center;
  }
  .footerNav ul li a {
    color: white;
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;
  }
  .footerNav ul li a:hover{
    opacity: 1;
  }

  .footerBottom{
    background-color: #000;
    padding: 20px;
    text-align: center;
  }
  .footerBottom p{
    color: white;
  }
  .designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
  }

  .container{
    max-width: fit-content;
    margin: auto;
    background: #f2f2f2;
    overflow: auto;
  }

  .gallery{
    margin: 5px;
    border: 1px solid #ccc;
    float: left;
    width: 390px;
    
  }

  .gallery img{
    width: 100%;
    height: auto;
    border-radius: 0px;
  }
  .marquee{
    font-family: cursive;
    font-style: italic;
    font-weight: bolder;
    color:rgb(112, 16, 124);
  }
