/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Figtree', Arial, sans-serif;
  background: #fff;
  color: #222;
  margin: 0;
  padding: 0;
}

/* Header and Navigation */
.header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #007bff;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 1rem;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
}

/* Featured Shows Section */
.featured-shows {
  padding: 5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-shows h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.show-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.show-card:hover {
  transform: translateY(-5px);
}

.show-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.show-card h3 {
  padding: 1rem;
  font-size: 1.25rem;
}

.show-card p {
  padding: 0 1rem;
  color: #666;
}

.book-button {
  margin: 1rem;
  padding: 0.5rem 1rem;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.book-button:hover {
  background-color: #0056b3;
}

/* About Section */
.about {
  background-color: #f8f9fa;
  padding: 5rem 1rem;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

/* Contact Section */
.contact {
  padding: 5rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-button {
  padding: 1rem;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #0056b3;
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  padding: 4rem 1rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #007bff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.show-card,
.about-content,
.contact-form {
  animation: fadeIn 1s ease-out;
}

.main-header {
  background: #111;
  padding: 1rem 0 1.5rem 0;
  text-align: center;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.header-top {
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.header-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
}

.hero-section {
  background: #181818;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.hero-image {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 0 auto;
}

.intro-section {
  max-width: 700px;
  margin: 2.5rem auto 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.intro-title {
  font-size: 1.1rem;
  color: #222;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.main-headline {
  font-size: 2.2rem;
  color: #7c3aed;
  font-weight: 700;
  line-height: 1.15;
  background-image: url('wave.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem 0;
  margin-top: -2rem;
}

.intro-desc {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 2.5rem;
}

.intro-desc b {
  font-weight: 700;
}

.features-section {
  background: #f5f5f7;
  padding: 2.5rem 0 2.5rem 0;
}

.features-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.features-title {
  color: #7c3aed;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-desc {
  color: #222;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.features-details {
  display: flex;
  justify-content: center;
  /* flex-direction: column; */
  align-items: center;
  gap: 1.2rem;
}

.truck-icon {
  width: 60px;
  height: auto;
  margin-bottom: 0.5rem;
}

.dimensions-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #222;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dimensions-list b {
  color: #7c3aed;
  font-weight: 700;
}

.cta-section {
  background: #7c3aed;
  padding: 2.5rem 0 3rem 0;
  padding-top: 2.5rem !important;
  margin: 0;
  max-width: 100vw;
  border-radius: 0;
  text-align: center;
}

.cta-title,
.cta-desc {
  color: #fff;
}

.cta-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-desc {
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
}

.whatsapp-btn {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  left: 1rem;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #25d366;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.1rem 2.2rem;
  border-radius: 2rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(34, 139, 34, 0.10);
  transition: background 0.2s;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.whatsapp-icon {
  width: 2rem;
  height: 2rem;
}

@media (max-width: 800px) {
  .main-header {
    padding: .8rem 0 1rem 0;
  }

  .header-logo {
    max-width: 220px;
  }

  .hero-image {
    max-width: 100%;
  }

  .intro-section,
  .features-content,
  .cta-section {
    max-width: 98vw;
    padding: 0.5rem;
  }
}

.cta-section {
  padding-bottom: 100px;
}

.about-arashows-section {
    background: #fff;
    padding: 2.5rem 0;
}
.about-arashows-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}
.about-arashows-title {
    color: #7c3aed;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}
.about-arashows-text {
    color: #222;
    font-size: 1.1rem;
    line-height: 1.7;
}