:root {
  /* Main color palette */
  --primary-color: #EB6B56; /* Coral red for balloons */
  --secondary-color: #85C7DE; /* Sky blue */
  --accent-color: #FFD166; /* Sunny yellow */
  --neutral-color: #5D576B; /* Deep purple */
  --background-color: #F4F1DE; /* Cream background */
  
  /* Shades */
  --primary-light: #FF8A78;
  --primary-dark: #D04E3E;
  --secondary-light: #A9D7E9;
  --secondary-dark: #5DA7C1;
  --accent-light: #FFDD8C;
  --accent-dark: #E6B94C;
  --neutral-light: #7E778C;
  --neutral-dark: #443D51;
  --background-dark: #E7E3D0;
}

/* Global Styles */
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--neutral-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--neutral-dark);
}

p {
  line-height: 1.7;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  position: relative;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70%;
  height: 3px;
  background-color: var(--primary-color);
}

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.nav-link {
  font-weight: 600;
  color: var(--neutral-color);
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 80%;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(93, 87, 107, 0.5), rgba(93, 87, 107, 0.3)), url('../LEG_images/hero-balloon.webp');
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
  background-color: white;
}

.about-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.03);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.about-feature i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 15px;
  flex-shrink: 0;
}

.about-feature-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Services Section */
.services-section {
  background-color: var(--background-color);
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service-content .price {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.service-features {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-features ul {
  padding-left: 20px;
}

.service-features li {
  margin-bottom: 5px;
}

/* Features Section */
.features-section {
  background-color: white;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-light);
  border-radius: 50%;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Price Plan Section */
.price-plan-section {
  background-color: var(--background-color);
}

.price-plan-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  position: relative;
}

.price-plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-plan-header {
  padding: 30px 20px;
  background-color: var(--neutral-light);
  color: white;
}

.price-plan-content {
  padding: 30px 20px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.price-plan-features {
  margin-bottom: 30px;
}

.price-plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-plan-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-plan-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background-color: white;
}

.team-member {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.05);
}

.team-info {
  padding: 20px;
  text-align: center;
  background-color: white;
}

.team-info h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-info span {
  display: block;
  color: var(--primary-color);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--background-color);
}

.review-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin: 15px;
  position: relative;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.review-text:before {
  content: '\201C';
  font-size: 4rem;
  position: absolute;
  left: -15px;
  top: -20px;
  opacity: 0.2;
  font-family: serif;
  color: var(--primary-color);
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-info h5 {
  margin-bottom: 5px;
}

.review-author-info span {
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* Core Info Section */
.core-info-section {
  background-color: white;
}

.core-info-item {
  background-color: var(--background-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.core-info-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.core-info-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
  background-color: var(--background-color);
}

.contact-form {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-control {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #e1e1e1;
  margin-bottom: 20px;
}

textarea.form-control {
  height: 150px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.custom-checkbox .custom-control-label::before {
  border-radius: 5px;
  border: 1px solid #e1e1e1;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Blog Section */
.blog-section {
  background-color: white;
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
}

.blog-content h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.blog-excerpt {
  color: var(--neutral-color);
  margin-bottom: 20px;
}

.blog-date {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
  background-color: var(--background-color);
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  border: none;
}

.accordion-button {
  padding: 20px;
  font-weight: 600;
  background-color: white;
  border: none;
  border-radius: 5px !important;
  color: var(--neutral-dark);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-light);
  color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1);
}

.accordion-body {
  padding: 20px;
  background-color: white;
}

/* Gallery Section */
.gallery-section {
  background-color: white;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 250px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--neutral-dark);
  color: white;
  padding-top: 70px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: white;
  margin-bottom: 20px;
}

.footer-about {
  margin-bottom: 30px;
}

.footer-heading {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
}

.footer-heading:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
}

.footer-bottom small {
  font-size: 0.9rem;
} 