@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Fredoka:wght@400;600&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

a {
  text-decoration: none;
  color: #333;
}

a:visited {
  color: #333;
}

a:hover {
  color: #2d99a6;
}

.topnav {
  width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 20px 100px;
  align-items: center;
}

.logo img {
  width: 80px;
}

.main-nav {
  display: flex;
}

.main-nav li {
  list-style: none;
}

.main-nav a {
  padding: 10px 15px;
}

.hero {
  width: 1440px;
  height: 500px;
  background: url("../images/hero.jpg") center/cover no-repeat;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.festival-hero {
  background: url("../images/texture.jpg") center/cover no-repeat;
}

.hero-text {
  text-align: center;
}

.hero-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 72px;
  color: #fff;
  margin: 0;
}

.date {
  color: #ffe066;
  font-weight: 700;
  font-size: 20px;
  margin-top: 10px;
}

.tagline {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  margin: 10px 0 20px 0;
}

.cta {
  background: #2d99a6;
  color: #fff;
  padding: 12px 25px;
  display: inline-block;
  border-radius: 8px;
  font-weight: bold;
}

.cta:hover {
  background: #1f6f79;
}

.about-row {
  width: 1440px;
  margin: 0 auto;
  display: flex;
}

.about-left {
  width: 720px;
  position: relative;
  padding: 100px;
}

.yellow-box {
  width: 200px;
  height: 200px;
  background: #ffd166;
  position: absolute;
}

.green-box {
  width: 200px;
  height: 200px;
  background: #80ed99;
  position: absolute;
  top: 40px;
  left: 40px;
}

.about-left h2 {
  position: relative;
  font-size: 36px;
}

.about-right {
  width: 720px;
  background: #f4a261;
  padding: 100px;
}

.video-section {
  width: 1440px;
  margin: 0 auto;
}

.video-section img {
  width: 100%;
  display: block;
}

.artists {
  width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
}

.artist img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.experience {
  width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  padding: 60px;
  background: #f4f4f4;
}

.experience div {
  background: #ffe066;
  padding: 20px;
  width: 250px;
  text-align: center;
  border-radius: 10px;
}

.moments {
  width: 1440px;
  margin: 0 auto;
  background: #2ecc71;
  padding: 30px 50px;
}

.gallery {
  display: flex;
  gap: 10px;
}

.gallery img {
  width: 25%;
  height: 150px;
  object-fit: cover;
}

.footer {
  width: 1440px;
  margin: 0 auto;
  background: #ff7a59;
  padding: 60px 100px 30px 100px;
  color: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
}

.footer-col {
  width: 50%;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 15px;
}