/* Souvenir Shop - Main CSS */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');

/* Color Palette Variables */
:root {
  --primary-1: #8B4513;    /* Saddle Brown - main souvenir color */
  --primary-2: #D2691E;    /* Chocolate - warm accent */
  --primary-3: #CD853F;    /* Peru - crafted goods */
  --primary-4: #F4A460;    /* Sandy Brown - warm highlight */
  --primary-5: #DEB887;    /* Burlywood - neutral craft */
  
  /* Light/Dark Shades */
  --light-1: #FFF8DC;      /* Cornsilk - very light */
  --light-2: #FFEFD5;      /* Papaya Whip - light */
  --light-3: #FFE4B5;      /* Moccasin - medium light */
  --dark-1: #654321;       /* Dark Brown */
  --dark-2: #3C2415;       /* Very Dark Brown */
  
  /* Gradients */
  --gradient-1: linear-gradient(135deg, var(--primary-1), var(--primary-2));
  --gradient-2: linear-gradient(45deg, var(--primary-3), var(--primary-4));
  --gradient-3: linear-gradient(180deg, var(--light-1), var(--light-2));
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-1);
  background-color: var(--light-1);
}

/* Conservative Font Sizes */
.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--primary-1) !important;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-1);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-2);
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-3);
  margin-bottom: 0.75rem;
}

p {
  font-size: 1rem;
  color: var(--dark-1);
  margin-bottom: 1rem;
}

/* Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .swiper {
    animation: none !important;
  }
}

/* Header Styles */
.navbar {
  background: var(--gradient-1) !important;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(139, 69, 19, 0.1);
}

.navbar-nav .nav-link {
  color: var(--light-1) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-3) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.3;
  top: -50%;
  left: -50%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-decorative {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--primary-4);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-decorative:nth-child(1) {
  top: 20%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-decorative:nth-child(2) {
  bottom: 30%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: var(--light-2);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
  border-color: var(--primary-3);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-1);
  margin-top: 1rem;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: var(--gradient-3);
}

.feature-card {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 3px 10px rgba(139, 69, 19, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-2);
  margin-bottom: 1rem;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background: var(--light-1);
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
  margin-bottom: 2rem;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-4);
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
  background: var(--primary-5);
}

.review-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 3px 10px rgba(139, 69, 19, 0.1);
}

.review-stars {
  color: #FFD700;
  margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background: var(--light-2);
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(139, 69, 19, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: var(--light-1);
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 5px rgba(139, 69, 19, 0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  border-bottom: 1px solid var(--light-3);
  font-weight: 600;
  color: var(--primary-1);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  color: var(--dark-1);
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: var(--gradient-2);
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.form-control {
  border: 2px solid var(--light-3);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 0.2rem rgba(210, 105, 30, 0.25);
}

.btn-primary {
  background: var(--gradient-1);
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* Footer */
.footer {
  background: var(--dark-1);
  color: var(--light-1);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-4);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-2);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-4);
}

.footer-bottom {
  border-top: 1px solid var(--primary-1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Swiper Styles */
.swiper-pagination-bullet {
  background: var(--primary-1);
}

.swiper-pagination-bullet-active {
  background: var(--primary-2);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-1);
}

/* Breadcrumbs */
.breadcrumb-section {
  padding: 2rem 0;
  background: var(--light-3);
}

.breadcrumb-img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

/* Responsive Design */
@media (max-width: 767.98px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .service-card,
  .team-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  /* Disable Swiper autoplay and effects on mobile */
  .swiper-slide {
    transition: none !important;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  h1 { font-size: 1.5rem; }
  p { font-size: 0.9rem; }
}

/* Additional Page Styles */
.page-section {
  padding: 4rem 0;
}

.page-section:nth-child(even) {
  background: var(--light-2);
}

.page-section:nth-child(odd) {
  background: var(--light-1);
}

/* Space Page */
#space {
  min-height: 80vh;
  background: var(--gradient-3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Strong contrast for accessibility */
.text-dark {
  color: var(--dark-2) !important;
}

.bg-light {
  background-color: var(--light-1) !important;
}

.bg-primary {
  background: var(--gradient-1) !important;
} 