/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #487A7B 0%, #A4D65E 100%);
  color: white;
  padding: 80px 0;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  padding: 0 40px;
}

.hero-image {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}

.logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.app-button {
  display: inline-block;
  transition: transform 0.3s ease;
}

.app-button:hover {
  transform: translateY(-2px);
}

.app-button img {
  height: 60px;
  width: auto;
}

.app-screenshot {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Main Features Section */
.main-features {
  padding: 100px 0;
  background: #f8f9fa;
}

.main-features h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #2c3e50;
  font-weight: 600;
}

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

.feature-item {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2c3e50;
  font-weight: 600;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
}

/* App Showcase Section */
.app-showcase {
  padding: 100px 0;
  background: white;
}

.showcase-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.showcase-text {
  flex: 1;
}

.showcase-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
  font-weight: 600;
}

.showcase-text p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.showcase-image {
  flex: 1;
  text-align: center;
}

.learn-more-btn {
  display: inline-block;
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.learn-more-btn:hover {
  color: #A4D65E;
}

/* Results Section */
.results-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.results-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.results-image {
  flex: 1;
  text-align: center;
}

.results-text {
  flex: 1;
}

.results-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
  font-weight: 600;
}

.results-text p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Lineup Section */
.lineup-section {
  padding: 100px 0;
  background: white;
}

.lineup-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.lineup-text {
  flex: 1;
}

.lineup-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
  font-weight: 600;
}

.lineup-text p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.lineup-image {
  flex: 1;
  text-align: center;
}

/* Events Section */
.events-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.events-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.events-image {
  flex: 1;
  text-align: center;
}

.events-text {
  flex: 1;
}

.events-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
  font-weight: 600;
}

.events-text p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Download Section */
.download-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #487A7B 0%, #A4D65E 100%);
  color: white;
  text-align: center;
}

.download-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.download-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: #487A7B;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #A4D65E;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #A4D65E;
}

.copyright {
  text-align: center;
  color: #bdc3c7;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 0;
  }
  
  .hero-content {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .showcase-content,
  .results-content,
  .lineup-content,
  .events-content {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-buttons,
  .download-buttons {
    justify-content: center;
  }
}
