/* MAIN STYLES - CULINARY VISION TEMPLATE
-------------------------------------------------- */

:root {
  /* Color Palette - Elegant Culinary Theme */
  --primary-1: #f8e9d6; /* Soft cream */
  --primary-2: #e3cbb8; /* Warm beige */
  --primary-3: #a67c52; /* Rich caramel */
  --primary-4: #5c4738; /* Deep espresso */
  --primary-5: #2d2a24; /* Charcoal */
  
  /* Shade variations */
  --primary-1-light: #fdf5ea;
  --primary-1-dark: #eadbc1;
  --primary-2-light: #f0dac9;
  --primary-2-dark: #d5bba6;
  --primary-3-light: #b89167;
  --primary-3-dark: #96693d;
  --primary-4-light: #6e5747;
  --primary-4-dark: #4a3829;
  --primary-5-light: #3e3a33;
  --primary-5-dark: #1e1c18;
  
  /* Font sizes */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.375rem;
  --font-size-2xl: 1.75rem;
  --font-size-3xl: 2.25rem;
  --font-size-4xl: 3rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

/* Global Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-5);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-3);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-3-dark);
}

.btn {
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-3);
  border-color: var(--primary-3);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-3-dark);
  border-color: var(--primary-3-dark);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-3);
  color: var(--primary-3);
}

.btn-outline:hover {
  background-color: var(--primary-3);
  color: white;
}

/* Section Styling */
.section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  position: relative;
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--primary-3);
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.section-desc {
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  text-align: center;
}

/* Shape decorative elements */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.shape-divider .shape-fill {
  fill: #FFFFFF;
}

/* Image styling */
.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card styling */
.card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  padding: 0.5rem 0;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: var(--font-size-xl);
  color: var(--primary-5);
}

.nav-link {
  font-weight: 500;
  color: var(--primary-5);
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-3);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: url('../GAS_images/GAS_temp/hero-bg.jpg') center/cover no-repeat;
  color: white;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(45, 42, 36, 0.85) 0%, rgba(45, 42, 36, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: var(--spacing-md) 0;
}

.hero-title {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--spacing-sm);
  color: white;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-md);
  color: var(--primary-2);
}

.hero-desc {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
}

.hero-btn-group {
  margin-top: var(--spacing-md);
}

.hero-image-container {
  position: relative;
  z-index: 5;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.hero-image-container.visible {
  transform: translateY(0);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.about-image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-3);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* Services Section */
.services-section {
  background-color: var(--primary-1-light);
  position: relative;
}

.service-card {
  padding: var(--spacing-md);
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-1);
  border-radius: 50%;
}

.service-name {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-sm);
}

.service-desc {
  margin-bottom: var(--spacing-sm);
}

.service-features {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background-color: var(--primary-3);
  border-radius: 50%;
}

/* Features Section */
.features-section {
  position: relative;
}

.feature-card {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.feature-image {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
}

.feature-name {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-sm);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--primary-1-light);
  position: relative;
}

.price-card {
  text-align: center;
  padding: var(--spacing-lg);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-3);
  transform: translateY(-10px);
}

.price-name {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-sm);
}

.price-value {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-3);
  margin-bottom: var(--spacing-md);
}

.price-features {
  margin: 0 0 var(--spacing-md);
  padding: 0;
  list-style: none;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Team Section */
.team-section {
  position: relative;
}

.team-member {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.team-image {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--spacing-md);
}

.team-name {
  font-size: var(--font-size-lg);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary-3);
  font-size: var(--font-size-sm);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-1-light);
  position: relative;
}

.review-card {
  background-color: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: var(--spacing-md);
}

.review-text {
  font-style: italic;
  margin-bottom: var(--spacing-sm);
}

.review-author {
  font-weight: 600;
  color: var(--primary-3);
}

/* Core Info Section */
.coreinfo-section {
  position: relative;
}

.coreinfo-item {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-3);
  margin-bottom: var(--spacing-sm);
}

.coreinfo-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-sm);
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-1-light);
  position: relative;
}

.contact-form {
  background-color: white;
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.75rem 1rem;
  margin-bottom: var(--spacing-md);
}

.contact-info {
  padding-left: var(--spacing-lg);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
}

.contact-info-icon {
  margin-right: var(--spacing-sm);
  font-size: 1.5rem;
  color: var(--primary-3);
}

/* Footer */
.site-footer {
  background-color: var(--primary-5);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-title {
  color: white;
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-md);
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-list a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

/* Animation utilities */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    transition: none;
    transform: none;
    opacity: 1;
  }
  
  .swiper-container {
    --swiper-autoplay: false;
  }
  
  html {
    scroll-behavior: auto;
  }
} 