*{box-sizing:border-box;margin:0;padding:0}

html{scroll-behavior:smooth;}

body{
  font-family:'Noto Sans', sans-serif;
  background:#fff;
  color:#111;
}

/* HEADER */

header{
  position:fixed;
  top:0;
  width:100%;
  background:#231F20;
  z-index:1000;
}

.header-inner{
  max-width:1300px;
  margin:auto;
  padding:16px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo img {
  width: 45%;
}

nav{
  display:flex;
  gap:18px;
}

nav button{
  background:none;
  border:none;
  color:#fff;
  font-size:13px;
  cursor:pointer;
  padding:6px 4px;
  opacity:.8;
  font-weight:500;
  transition:.3s;
}

nav button:hover,
nav button.active{
  opacity:1;
  border-bottom:2px solid #fff;
}

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.hamburger span{
  width:25px;
  height:2px;
  background:#fff;
}

@media(max-width:900px){
  nav{
    position:absolute;
    top:70px;
    right:0;
    background:#231F20;
    flex-direction:column;
    width:220px;
    padding:20px;
    display:none;
  }
  nav.open{display:flex;}
  .hamburger{display:flex;}
  
}

/* HERO */

.hero{
  margin-top:60px;
  width:100%;
  background:#7A1E7A;
  color: white;
  padding:60px 20px;
  text-align:center;
}

.hero-inner{
  max-width:1200px;
  margin:auto;
}

.hero h1{
  font-size:32px;
  font-weight:700;
  letter-spacing:1px;
}

/* MAIN */

main{
  max-width:1200px;
  margin:60px auto 80px auto;
  padding:0 20px;
}

/* DATE GROUP */

.date-group{
  margin-bottom:60px;
}

.date-title{
  font-size:20px;
  font-weight:700;
  margin-bottom:30px;
  padding-bottom:10px;
  border-bottom:1px solid #e5e5e5;
  color:#7A1E7A;
}

/* GRID */

.events-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}

@media(max-width:900px){
  .events-grid{
    grid-template-columns:1fr;
  }
}

/* EVENT CARD */

.event{
  border:1px solid #e8e8e8;
  padding:20px;
  transition:.25s ease;
  background:#fff;
}

.event:hover{
  box-shadow:0 4px 14px rgba(0,0,0,0.08);
  background:#f8effc;
}

/* FEATURED FIRST EVENT */

.event.featured{
  grid-column:1/-1;
}

.event img{
  width:100%;
  height:220px;
  object-fit:cover;
  margin-bottom:12px;
}

.discipline{
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#666;
  margin-bottom:6px;
}

.time{
  font-size:14px;
  font-weight:600;
  margin-bottom:6px;
}

.event h3{
  font-size:20px;
  font-weight:600;
  margin-bottom:6px;
}

.subtitle{
  font-size:14px;
  color:#555;
  margin-bottom:8px;
}

.venue{
  font-size:13px;
  color:#777;
  margin-bottom:10px;
}

.desc{
  font-size:14px;
  line-height:1.6;
}

.price{
  margin-top:10px;
  font-weight:600;
}

footer{
  text-align:center;
  padding:50px 20px;
  border-top:1px solid #eee;
  font-size:13px;
  color:#fff;
  background-color: #777;
}

footer .logo-2 img {
  width: 20%;
  margin-bottom: 1rem;
}

@media(min-width:350px){
  footer .logo-2 img {
  width: auto;
}
}