/* ===== THRIFT STORE TEMPLATE - MAIN STYLES ===== */

/* Color Palette Variables */
:root {
  --primary-color: #8B4513;        /* Saddle Brown - thrift/vintage feel */
  --secondary-color: #D2691E;      /* Chocolate - warm accent */
  --accent-color: #FF6347;         /* Tomato - bright highlight */
  --neutral-color: #556B2F;        /* Dark Olive Green - earthy tone */
  --complement-color: #4682B4;     /* Steel Blue - trustworthy */
  
  /* Light/Dark Variants */
  --primary-light: #CD853F;
  --primary-dark: #654321;
  --secondary-light: #F4A460;
  --secondary-dark: #A0522D;
  --accent-light: #FFB6C1;
  --accent-dark: #DC143C;
  --neutral-light: #9ACD32;
  --neutral-dark: #2F4F2F;
  --complement-light: #87CEEB;
  --complement-dark: #2F4F4F;
  
  /* Text Colors */
  --text-primary: #2C3E50;
  --text-secondary: #5D6D7E;
  --text-light: #ECF0F1;
  --text-muted: #95A5A6;
  
  /* Background Colors */
  --bg-light: #FDFEFE;
  --bg-dark: #34495E;
  --bg-section: #F8F9FA;
  
  /* Conservative Font Sizes */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-size-h1: 2.2rem;
  --font-size-h2: 1.9rem;
  --font-size-h3: 1.6rem;
  --font-size-h4: 1.3rem;
  --font-size-h5: 1.1rem;
  --font-size-h6: 1rem;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 20px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
  color: var(--text-secondary);
}

/* Header & Navigation */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.5rem !important; /* Conservative size */
  font-weight: 700;
  color: var(--text-light) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
  color: var(--text-light) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-light) !important;
}

.navbar-toggler {
  border: none;
  color: var(--text-light);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../FIN_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: var(--font-size-h1);
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: var(--font-size-h3);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: var(--font-size-large);
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Decorative Shapes */
.hero-section .blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  top: 20%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.blob-2 {
  width: 200px;
  height: 200px;
  background: var(--complement-color);
  bottom: 20%;
  left: 15%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--secondary-color);
  font-size: var(--font-size-h4);
}

.section-desc {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-item {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-color: var(--accent-color);
}

.service-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.service-name {
  font-size: var(--font-size-h5);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.service-desc {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: var(--font-size-small);
}

.service-price {
  font-size: var(--font-size-h4);
  color: var(--accent-color);
  font-weight: 700;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: var(--bg-light);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-color);
}

.team-member-name {
  font-size: var(--font-size-h5);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--text-secondary);
  font-size: var(--font-size-small);
}

/* Reviews/Testimonials Slider */
.reviews-slider {
  background: linear-gradient(135deg, var(--neutral-light), var(--neutral-color));
  color: var(--text-light);
  border-radius: 15px;
  padding: 3rem 2rem;
  margin-top: 3rem;
}

.review-item {
  text-align: center;
  padding: 2rem;
}

.review-text {
  font-size: var(--font-size-large);
  font-style: italic;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.review-author {
  font-weight: 600;
  color: var(--accent-light);
}

/* Contact Form */
.contact-form {
  background: var(--bg-section);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 2px solid var(--neutral-light);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* FAQ Section */
.faq-item {
  background: var(--bg-light);
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 1rem 1.5rem;
  border-radius: 8px 8px 0 0;
  font-weight: 600;
  margin: 0;
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  color: var(--text-light);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-section a:hover {
  opacity: 1;
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  text-align: center;
}

#site-copyright {
  color: var(--text-light);
  opacity: 0.7;
  font-size: var(--font-size-small);
}

/* Breadcrumbs */
.breadcrumb-nav {
  padding: 1rem 0;
  background: var(--bg-section);
}

.breadcrumb-nav img {
  height: 24px;
  width: auto;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.bg-gradient-accent {
  background: linear-gradient(135deg, var(--accent-color), var(--complement-color));
}

/* Responsive Helpers */
@media (max-width: 768px) {
  :root {
    --font-size-h1: 1.8rem;
    --font-size-h2: 1.6rem;
    --font-size-h3: 1.4rem;
    --section-padding: 60px 0;
  }
  
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .services-grid,
  .features-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1.3rem !important;
  }
} 