/*
* Helipad Event Venue - Main CSS
* Modern website template for helicopter landing event venue
*/

:root {
  /* Primary color palette with 5 colors */
  --primary-color: #4A90E2;       /* Sky blue - representing clear skies */
  --secondary-color: #50C878;     /* Emerald green - representing helipad */
  --accent-color: #FF6B6B;        /* Coral red - for CTAs and highlights */
  --neutral-color: #414A5A;       /* Slate gray - for text */
  --background-color: #F9F9F9;    /* Off-white - for backgrounds */
  
  /* Light and dark shades */
  --primary-light: #6BA5E9;
  --primary-dark: #3A78C2;
  --secondary-light: #72D694;
  --secondary-dark: #3AA963;
  --accent-light: #FF8A8A;
  --accent-dark: #E05151;
  --neutral-light: #6D7583;
  --neutral-dark: #2F3642;
  
  /* Font sizes */
  --fs-h1: 3.5rem;
  --fs-h2: 2.5rem;
  --fs-h3: 1.75rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
}

/* Base styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--neutral-color);
  background-color: var(--background-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  color: var(--neutral-dark);
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

p {
  margin-bottom: var(--spacing-sm);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: white;
}

.btn-accent {
  background-color: var(--accent-color);
  color: white;
  border: 2px solid var(--accent-color);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: white;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Section styling */
section {
  padding: var(--spacing-lg) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-sm);
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.nav-link {
  font-weight: 600;
  color: var(--neutral-color);
  margin: 0 var(--spacing-xs);
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -3px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Hero section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--neutral-dark);
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
}

.hero-content {
  color: white;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-sm);
  color: white;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
}

/* About section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.about-image:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(74, 144, 226, 0.1);
  top: 0;
  left: 0;
  z-index: 1;
}

.about-image img {
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-feature {
  padding: var(--spacing-sm);
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: var(--spacing-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: var(--spacing-xs);
}

/* Services section */
.services-section {
  background-color: #f8f9fa;
}

.service-item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item-image {
  height: 200px;
  overflow: hidden;
}

.service-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item:hover .service-item-image img {
  transform: scale(1.1);
}

.service-item-content {
  padding: var(--spacing-sm);
}

.service-item-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

.service-item-features {
  list-style: none;
  padding: 0;
  margin: var(--spacing-sm) 0;
}

.service-item-features li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.service-item-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Features section */
.features-section {
  position: relative;
}

.feature-item {
  text-align: center;
  padding: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(74, 144, 226, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

/* Price Plans */
.price-plan-item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  text-align: center;
  position: relative;
}

.price-plan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-plan-header {
  background-color: var(--primary-color);
  color: white;
  padding: var(--spacing-sm);
}

.price-plan-content {
  padding: var(--spacing-sm);
}

.price-plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin: var(--spacing-sm) 0;
}

.price-plan-features {
  list-style: none;
  padding: 0;
  margin: var(--spacing-sm) 0;
  text-align: left;
}

.price-plan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.price-plan-features li:last-child {
  border-bottom: none;
}

/* Team section */
.team-section {
  background-color: #f8f9fa;
}

.team-member {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: var(--spacing-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member-image {
  position: relative;
  overflow: hidden;
}

.team-member-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.team-member:hover .team-member-image img {
  transform: scale(1.1);
}

.team-member-info {
  padding: var(--spacing-sm);
  text-align: center;
}

.team-member-name {
  margin-bottom: 5px;
}

.team-member-role {
  color: var(--primary-color);
  font-weight: 600;
}

/* Reviews section */
.reviews-section {
  position: relative;
  overflow: hidden;
}

.reviews-slider .swiper-slide {
  padding: var(--spacing-sm);
}

.review-item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: var(--spacing-sm);
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding-left: 1.5rem;
}

.review-text:before {
  content: '"';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2rem;
  color: var(--primary-light);
  line-height: 1;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.review-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-name {
  font-weight: 600;
}

/* Core Info section */
.core-info-section {
  background-color: #f8f9fa;
}

.core-info-item {
  text-align: center;
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm);
  transition: transform 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-5px);
}

.core-info-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

/* Contact section */
.contact-section {
  position: relative;
}

.contact-form {
  background-color: white;
  padding: var(--spacing-md);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-control {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 5px;
  padding: 0.75rem;
  width: 100%;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.custom-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-sm);
}

.custom-checkbox input {
  margin-right: 10px;
  margin-top: 5px;
}

/* Blog section */
.blog-section {
  background-color: #f8f9fa;
}

.blog-item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: var(--spacing-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-item-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.blog-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-item-image img {
  transform: scale(1.1);
}

.blog-item-content {
  padding: var(--spacing-sm);
}

.blog-item-date {
  font-size: 0.875rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

/* FAQ section */
.faq-section {
  position: relative;
}

.accordion-item {
  margin-bottom: var(--spacing-xs);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
}

.accordion-button {
  font-weight: 600;
  padding: 1rem;
  background-color: white;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-light);
  color: white;
}

.accordion-body {
  padding: 1rem;
  background-color: white;
}

/* Gallery section */
.gallery-section {
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--neutral-dark);
  color: white;
  padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-widget {
  margin-bottom: var(--spacing-md);
}

.footer-widget h4 {
  color: white;
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h4:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
}

.footer-widget ul li {
  margin-bottom: 10px;
}

.footer-widget ul li a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  padding-top: var(--spacing-sm);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.7);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

/* Floating shapes */
.shape {
  position: absolute;
  z-index: -1;
}

.shape-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(74, 144, 226, 0.05);
}

.shape-square {
  width: 200px;
  height: 200px;
  transform: rotate(45deg);
  background-color: rgba(80, 200, 120, 0.05);
}

/* Space page */
#space {
  min-height: 80vh;
  width: 100%;
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 1rem 0;
  background-color: #f8f9fa;
}

.breadcrumb {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb img {
  max-height: 20px;
  margin-right: 0.5rem;
}

/* Additional pages */
.additional-page-section {
  padding: var(--spacing-md) 0;
}

.additional-page-item {
  margin-bottom: var(--spacing-md);
}

/* Animations based on prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
} 