/* Tourism Guide Website - Main CSS */
/* Bootstrap 5 CDN will be included in HTML */

/* Color Palette - 5 primary colors plus shades */
:root {
  --primary-1: #2c5f2d;      /* Forest Green */
  --primary-2: #e67e22;      /* Warm Orange */
  --primary-3: #8b4513;      /* Saddle Brown */
  --primary-4: #1e3a8a;      /* Deep Blue */
  --primary-5: #dc2626;      /* Crimson Red */
  
  /* Light shades */
  --light-1: #a8d5aa;       /* Light Green */
  --light-2: #f4b083;       /* Light Orange */
  --light-3: #d4a574;       /* Light Brown */
  --light-4: #93c5fd;       /* Light Blue */
  --light-5: #fca5a5;       /* Light Red */
  
  /* Dark shades */
  --dark-1: #1a3f1b;        /* Dark Green */
  --dark-2: #c0661a;        /* Dark Orange */
  --dark-3: #654321;        /* Dark Brown */
  --dark-4: #1e40af;        /* Dark Blue */
  --dark-5: #b91c1c;        /* Dark Red */
  
  /* Neutral colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;
}

/* Conservative font sizes */
html {
  font-size: 16px;
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Header & Navigation */
.navbar-brand {
  font-size: 1.25rem !important; /* Conservative size */
  font-weight: 600;
  color: var(--primary-1) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-gray) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-2) !important;
}

/* Hero Section - Fullscreen */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-1), var(--primary-4));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../FLA_images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 2.5rem; /* Conservative size */
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-section .lead {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Decorative shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-2), var(--primary-5));
  opacity: 0.1;
  z-index: 1;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: -100px;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: -50px;
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem; /* Conservative size */
  font-weight: 700;
  color: var(--primary-1);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

/* About Section */
.about-feature {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  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 {
  font-size: 2.5rem;
  color: var(--primary-2);
  margin-bottom: 1rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  overflow-x: hidden;
  padding: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-2);
  margin-top: 1rem;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  background: var(--light-gray);
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-1);
}

/* Reviews/Testimonials Slider */
.reviews-slider {
  background: linear-gradient(135deg, var(--light-1), var(--light-4));
  border-radius: 15px;
  padding: 3rem;
}

.review-item {
  text-align: center;
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin: 0 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.review-author {
  font-weight: 600;
  color: var(--primary-1);
}

/* FAQ Section */
.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--light-gray);
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-1);
  border: none;
  width: 100%;
  text-align: left;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--light-2);
}

.faq-answer {
  padding: 1rem 1.5rem;
  color: var(--dark-gray);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact Form */
.contact-form {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 3rem;
}

.contact-form .form-control {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 0.2rem rgba(230, 126, 34, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-2), var(--primary-5));
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-1), var(--dark-4));
  color: var(--white);
  padding: 3rem 0 2rem;
}

.footer h5 {
  color: var(--light-2);
  margin-bottom: 1rem;
}

.footer p, .footer a {
  color: var(--light-gray);
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary-2);
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-item-body {
  overflow-x: hidden;
  padding: 1.5rem;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility Classes */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-1), var(--primary-4));
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--primary-2), var(--primary-5));
}

.text-primary-custom {
  color: var(--primary-1) !important;
}

.text-secondary-custom {
  color: var(--primary-2) !important;
}

.border-primary-custom {
  border-color: var(--primary-1) !important;
}

.shadow-custom {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

/* Space page specific */
#space {
  min-height: 60vh;
  background: linear-gradient(135deg, var(--light-1), var(--light-4));
  border-radius: 15px;
  margin: 2rem 0;
} 