:root {
  /* Primary Color Palette - Harmonious Pastels for Balloon Ride Theme */
  --color-primary: #f7a8a4; /* Soft coral for balloons */
  --color-secondary: #b8e6b8; /* Gentle sage green for countryside */
  --color-accent: #ffd09b; /* Warm peach for sunrise/sunset */
  --color-neutral: #e8dcc6; /* Cream beige for natural elements */
  --color-highlight: #c4a1ff; /* Lavender for sky accents */
  
  /* Light/Dark Shades */
  --color-light: #fefefe;
  --color-dark: #2c3e50;
  --color-primary-light: #fdd6d4;
  --color-primary-dark: #e85a54;
  --color-secondary-light: #e1f5e1;
  --color-secondary-dark: #7bb37b;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: Georgia, 'Times New Roman', serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--color-dark);
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-neutral) 100%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.8rem;
  color: var(--color-primary-dark);
}

h3 {
  font-size: 2rem;
  color: var(--color-secondary-dark);
}

p {
  margin-bottom: 1rem;
  color: var(--color-dark);
}

/* Header */
header {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-light) !important;
}

.navbar-nav .nav-link {
  color: var(--color-light) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-neutral) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(rgba(184, 230, 184, 0.2), rgba(255, 208, 155, 0.3)), 
              url('VEL_assets/VEL_images/hero-balloon-field.webp') center/cover;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--color-primary-light) 0%, transparent 50%, var(--color-accent) 100%);
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-secondary-dark);
  margin-bottom: 2rem;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--color-dark);
  max-width: 600px;
}

/* Decorative Shapes */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-blob-1 {
  width: 200px;
  height: 200px;
  background: var(--color-primary);
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.shape-blob-2 {
  width: 150px;
  height: 150px;
  background: var(--color-highlight);
  bottom: 30%;
  left: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styling */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(135deg, var(--color-neutral) 0%, var(--color-light) 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-secondary-dark);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.service-card {
  background: var(--color-light);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 2rem;
  color: var(--color-light);
}

.service-name {
  font-size: 1.5rem;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

.service-features {
  color: var(--color-secondary-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-primary);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 3rem;
}

.feature-item {
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-primary-light) 100%);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: scale(1.05);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: var(--color-light);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  border: 4px solid var(--color-primary);
  object-fit: cover;
}

/* Reviews Slider */
.reviews-slider .swiper-slide {
  background: var(--color-light);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.review-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.review-author {
  font-weight: bold;
  color: var(--color-primary-dark);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* FAQ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-accent));
  border: none;
  font-weight: 600;
  color: var(--color-dark);
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  color: var(--color-light);
}

.accordion-body {
  background: var(--color-light);
  color: var(--color-dark);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-light);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--color-neutral);
  padding: 12px 15px;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(247, 168, 164, 0.25);
}

.btn-primary {
  background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary-dark) 100%);
  color: var(--color-light);
  padding: 3rem 0 1rem 0;
  text-align: center;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-links {
  margin: 2rem 0;
}

.footer-links a {
  color: var(--color-light);
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 20px 0;
}

.breadcrumb-item {
  font-size: 0.9rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Media Queries */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .section-padding {
    padding: 50px 0;
  }
} 