:root {
  /* Luxury Camper Van Color Palette */
  --primary-color: #2C3E50;     /* Deep blue slate */
  --secondary-color: #D4AF37;   /* Metallic gold */
  --tertiary-color: #8E6C3F;    /* Rich brown */
  --accent-color: #7F5F5F;      /* Muted mauve */
  --neutral-color: #F5F5F5;     /* Off white */
  
  /* Shades */
  --primary-light: #3D556F;
  --primary-dark: #1A2530;
  --secondary-light: #E6C65C;
  --secondary-dark: #AC8C22;
  --tertiary-light: #A68959;
  --tertiary-dark: #6A4F2C;
  --accent-light: #9A7878;
  --accent-dark: #644B4B;
  --neutral-light: #FFFFFF;
  --neutral-dark: #E0E0E0;
}

/* Base Styles */
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-color);
  overflow-x: hidden;
  background-color: var(--neutral-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.section-subtitle {
  margin-bottom: 50px;
  color: var(--tertiary-color);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--neutral-light);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-dark);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

/* Header Styles */
header {
  background-color: var(--primary-color);
  padding: 20px 0;
}

header .navbar-brand {
  color: var(--secondary-color);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 28px;
}

header .nav-link {
  color: var(--neutral-light);
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

header .nav-link:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  background-image: url('../VEL_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  color: var(--neutral-light);
}

.hero-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--neutral-light);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

/* About Section */
.about-section {
  background-color: var(--neutral-light);
  padding: 100px 0;
}

.about-feature {
  padding: 30px;
  margin-bottom: 30px;
  background-color: var(--neutral-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-radius: 10px;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Services Section */
.services-section {
  background-color: var(--neutral-dark);
  padding: 100px 0;
}

.service-item {
  background-color: var(--neutral-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.service-item: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: all 0.5s ease;
}

.service-item:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
}

.service-title {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-price {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-features {
  padding-left: 0;
  list-style-type: none;
}

.service-features li {
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

/* Features Section */
.features-section {
  padding: 100px 0;
}

.feature-item {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--neutral-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: var(--primary-light);
  color: var(--neutral-light);
  font-size: 2rem;
  border-radius: 50%;
  margin: 0 auto 30px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--neutral-dark);
  padding: 100px 0;
}

.price-item {
  background-color: var(--neutral-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
  position: relative;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
  background-color: var(--primary-color);
  padding: 30px;
  color: var(--neutral-light);
  text-align: center;
}

.price-title {
  margin-bottom: 0;
  font-size: 24px;
}

.price-amount {
  font-size: 48px;
  color: var(--secondary-color);
  margin: 20px 0;
  font-weight: 700;
}

.price-content {
  padding: 30px;
}

.price-features {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 30px;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--neutral-dark);
  position: relative;
  padding-left: 25px;
}

.price-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

/* Team Section */
.team-section {
  padding: 100px 0;
}

.team-member {
  background-color: var(--neutral-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.1);
}

.team-content {
  padding: 30px;
  text-align: center;
}

.team-name {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.team-role {
  color: var(--secondary-color);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--neutral-dark);
  padding: 100px 0;
}

.review-item {
  background-color: var(--neutral-light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 15px;
  position: relative;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.review-text:before {
  content: '"';
  font-size: 60px;
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  top: -20px;
  opacity: 0.3;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color);
}

/* Core Info Section */
.coreinfo-section {
  padding: 100px 0;
}

.coreinfo-item {
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
  background-color: var(--neutral-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-radius: 10px;
  height: 100%;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-light);
  padding: 100px 0;
  color: var(--neutral-light);
}

.contact-form {
  background-color: var(--neutral-light);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: none;
  border-bottom: 1px solid var(--neutral-dark);
  border-radius: 0;
  padding: 15px 0;
  margin-bottom: 30px;
  background-color: transparent;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--secondary-color);
}

.form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Blog Section */
.blog-section {
  padding: 100px 0;
}

.blog-item {
  background-color: var(--neutral-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 30px;
}

.blog-title {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.blog-excerpt {
  margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
  background-color: var(--neutral-dark);
  padding: 100px 0;
}

.accordion-item {
  background-color: var(--neutral-light);
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--neutral-light);
  color: var(--primary-color);
  font-weight: 600;
  box-shadow: none;
  padding: 20px;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-light);
  color: var(--neutral-light);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--secondary-color);
}

.accordion-body {
  padding: 20px;
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: var(--neutral-light);
  padding: 100px 0 50px;
}

footer h4 {
  color: var(--secondary-color);
  margin-bottom: 30px;
}

footer p {
  margin-bottom: 15px;
}

footer ul {
  padding-left: 0;
  list-style-type: none;
}

footer ul li {
  margin-bottom: 15px;
}

footer ul li a {
  color: var(--neutral-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

small#site-copyright {
  display: block;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* Additional Pages */
.page-header {
  height: 40vh;
  min-height: 400px;
  background-color: var(--primary-color);
  color: var(--neutral-light);
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.page-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.7);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  background-color: transparent;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: var(--secondary-color);
}

.breadcrumb-item.active {
  color: var(--neutral-light);
}

/* Space Page */
#space {
  min-height: 500px;
  background-color: var(--neutral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeInUp {
  animation-name: fadeInUp;
} 