/* Luxury Supercar Rental - Main Styles */

:root {
  /* Primary Color Palette - Sophisticated Pastels */
  --primary-gold: #D4AF37;
  --primary-champagne: #F7E7CE;
  --primary-pearl: #E8E2D4;
  --primary-midnight: #2C3E50;
  --primary-silver: #BDC3C7;
  
  /* Light/Dark Shades */
  --gold-light: #F4E4A6;
  --gold-dark: #B8941F;
  --champagne-light: #FFEFD9;
  --champagne-dark: #E6D1A3;
  --midnight-light: #34495E;
  --midnight-dark: #1A252F;
  
  /* Gradients */
  --luxury-gradient: linear-gradient(135deg, var(--primary-gold), var(--primary-champagne));
  --dark-gradient: linear-gradient(135deg, var(--primary-midnight), var(--midnight-light));
  
  /* Typography */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Open Sans', sans-serif;
  --font-accent: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
overflow-x: hidden;
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--primary-midnight);
  background-color: #fafafa;
  font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--primary-midnight);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
  color: var(--midnight-light);
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-family: var(--font-accent);
  font-weight: 500;
  color: var(--primary-midnight) !important;
  margin: 0 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-gold) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--luxury-gradient);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--dark-gradient);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../BEN_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: var(--luxury-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--primary-champagne);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
}

/* Decorative Shapes */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-blob-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-gold);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-blob-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-champagne);
  bottom: 10%;
  left: 15%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styling */
section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-midnight);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--primary-gold);
  margin-bottom: 3rem;
  font-weight: 600;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  color: var(--midnight-light);
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--primary-pearl), var(--champagne-light));
}

.about-feature {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: white;
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 3rem;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-image {
  height: 250px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.service-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--luxury-gradient);
  opacity: 0.8;
}

.service-content {
  padding: 2rem;
}

.service-name {
  font-size: 1.5rem;
  color: var(--primary-midnight);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--midnight-light);
  margin-bottom: 1.5rem;
}

.service-features {
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
  font-family: var(--font-primary);
}

/* Team Section */
.team-section {
  background: var(--primary-pearl);
}

.team-member {
  text-align: center;
  margin-bottom: 3rem;
}

.team-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background-position: center;
  background-size: cover;
  border: 5px solid var(--primary-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team-name {
  font-size: 1.3rem;
  color: var(--primary-midnight);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-gold);
  font-weight: 600;
}

/* Reviews Section */
.reviews-section {
  background: white;
}

.swiper-container {
  padding: 2rem 0;
}

.review-card {
  background: var(--primary-pearl);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 1rem;
}

.review-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--midnight-light);
}

.review-author {
  font-weight: 600;
  color: var(--primary-gold);
  font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
  background: var(--champagne-light);
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: var(--primary-gold);
  color: white;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--gold-dark);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-answer.active {
  padding: 1.5rem;
  max-height: 200px;
}

/* Gallery Section */
.gallery-section {
  background: white;
  padding: 3rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  height: 250px;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* Contact Form */
.contact-section {
  background: var(--dark-gradient);
  color: white;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 2rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--primary-gold);
  border-radius: 10px;
  padding: 1rem;
  color: white;
  font-size: 1rem;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--gold-light);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
  color: white;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.btn-luxury {
  background: var(--luxury-gradient);
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  color: var(--primary-midnight);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-luxury:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Footer */
footer {
  background: var(--primary-midnight);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer-link {
  color: var(--primary-silver);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid var(--midnight-light);
  padding-top: 2rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--primary-pearl);
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  background: url('../BEN_images/breadcrumb-icon.webp') center/cover;
  border-radius: 50%;
}

/* Animation classes - DISABLED for better content visibility */
.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: none !important;
}

.fade-in.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Ensure content visibility when JS is disabled */
.no-js .fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Utility Classes */
.text-gradient {
  background: var(--luxury-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-overlay {
  position: relative;
}

.bg-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.content-overlay {
  position: relative;
  z-index: 2;
} 