:root {
  --primary: #ff6b6b;
  --secondary: #4ecdc4;
  --accent: #ffe66d;
  --dark: #2f2f2f;
  --light: #f9f9f9;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.8;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 120px 0;
}

.bg-light {
  background-color: var(--light);
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  color: var(--dark);
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  background: var(--secondary);
  margin: 15px auto 0;
  border-radius: 10px;
}

.main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-list a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav-list a:hover {
  color: var(--primary);
}

.hero-section {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at top right, #fff5f5, #ffffff);
  padding-top: 80px;
}

.main-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 30px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #666;
}

.btn {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
}

.image-wrapper {
  margin: 60px 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.content-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.content-image:hover {
  transform: scale(1.02);
}

.grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  background: var(--white);
  padding: 40px;
  border-radius: 25px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary);
}

.card h3 {
  margin-bottom: 15px;
  color: var(--primary);
}

.promo-box {
  background: var(--accent);
  padding: 60px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}

.promo-box ul {
  list-style: none;
  font-size: 1.2rem;
}

.promo-box li {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}

.promo-box li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.event-item {
  background: var(--white);
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow);
}

.event-date {
  background: var(--secondary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  min-width: 150px;
  text-align: center;
}

.price-card {
  text-align: center;
  padding: 50px 30px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.price-card.highlighted {
  border: 3px solid var(--primary);
  transform: scale(1.05);
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 20px 0;
  color: var(--dark);
}

.main-footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-grid h4 {
  color: var(--secondary);
  margin-bottom: 25px;
  font-size: 1.4rem;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-legal a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  text-align: center;
  color: #888;
}

@media (max-width: 992px) {
  .main-title {
    font-size: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .price-card.highlighted {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
  .main-header {
    padding: 10px 0;
  }
  .nav-list {
    display: none;
  }
  .main-title {
    font-size: 2.4rem;
  }
  .event-item {
    flex-direction: column;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
