/* ===== SHOE REPAIR SHOP - MAIN STYLES ===== */

/* Color Palette Variables - 5 Primary Colors + Light/Dark Shades */
:root {
  --primary-brown: #8B4513;
  --primary-brown-light: #A0522D;
  --primary-brown-dark: #654321;
  
  --secondary-leather: #D2691E;
  --secondary-leather-light: #F4A460;
  --secondary-leather-dark: #B8860B;
  
  --accent-gold: #DAA520;
  --accent-gold-light: #F0E68C;
  --accent-gold-dark: #B8860B;
  
  --neutral-charcoal: #36454F;
  --neutral-charcoal-light: #708090;
  --neutral-charcoal-dark: #2F4F4F;
  
  --warm-cream: #F5F5DC;
  --warm-cream-light: #FFFAF0;
  --warm-cream-dark: #F0E68C;
  
  /* Typography - Conservative Sizing */
  --root-font-size: 16px;
  --navbar-brand-size: 1.25rem;
  --h1-size: 1.75rem;
  --h2-size: 1.5rem;
  --h3-size: 1.25rem;
  --h4-size: 1.125rem;
  --p-size: 1rem;
  --small-size: 0.875rem;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--root-font-size);
  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;
  font-size: var(--p-size);
  line-height: 1.6;
  color: var(--neutral-charcoal);
  background-color: var(--warm-cream-light);
}

/* Typography */
.navbar-brand {
  font-size: var(--navbar-brand-size) !important;
  font-weight: 600;
  color: var(--primary-brown) !important;
}

h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  color: var(--primary-brown);
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--h2-size);
  font-weight: 600;
  color: var(--primary-brown);
  margin-bottom: 0.875rem;
}

h3 {
  font-size: var(--h3-size);
  font-weight: 600;
  color: var(--neutral-charcoal);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: var(--h4-size);
  font-weight: 500;
  color: var(--neutral-charcoal);
  margin-bottom: 0.625rem;
}

p {
  font-size: var(--p-size);
  margin-bottom: 1rem;
  color: var(--neutral-charcoal-light);
}

small {
  font-size: var(--small-size);
}

/* Header & Navigation */
.navbar {
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-cream-dark) 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0.75rem 0;
}

.navbar-nav .nav-link {
  color: var(--neutral-charcoal) !important;
  font-weight: 500;
  transition: color 0.3s ease;
  margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-brown) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-brown-light) 0%, var(--secondary-leather-dark) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../SOU_images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-section .btn {
  background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
  border: none;
  color: var(--neutral-charcoal);
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.hero-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Section Styling */
.section-padding {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--secondary-leather);
  font-size: var(--small-size);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* Services Section */
.services-section {
  background: var(--warm-cream);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.service-price {
  color: var(--accent-gold-dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1rem;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--warm-cream-light) 0%, var(--warm-cream) 100%);
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--secondary-leather);
  margin-bottom: 1rem;
}

/* Team Section */
.team-section {
  background: var(--neutral-charcoal-light);
  color: white;
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--accent-gold);
  margin-bottom: 1.5rem;
}

.team-role {
  color: var(--accent-gold-light);
  font-style: italic;
}

/* Reviews/Testimonials */
.reviews-section {
  background: var(--warm-cream);
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin: 1rem;
  text-align: center;
}

.review-author {
  font-weight: 600;
  color: var(--primary-brown);
  margin-top: 1rem;
}

/* Contact Form */
.contact-section {
  background: linear-gradient(135deg, var(--primary-brown-dark) 0%, var(--neutral-charcoal-dark) 100%);
  color: white;
}

.contact-form {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.form-control {
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  background: white;
  box-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
}

.btn-submit {
  background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
  border: none;
  color: var(--neutral-charcoal);
  font-weight: 600;
  padding: 0.75rem 3rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* FAQ Section */
.faq-section {
  background: var(--warm-cream-light);
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-brown);
  border-bottom: 1px solid var(--warm-cream);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  color: var(--neutral-charcoal-light);
}

/* Gallery Section */
.gallery-section {
  background: var(--neutral-charcoal);
  padding: 4rem 0;
}

.gallery-item {
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--neutral-charcoal-dark) 0%, var(--primary-brown-dark) 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--accent-gold-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--warm-cream-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--accent-gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb-section {
  background: var(--warm-cream);
  padding: 1rem 0;
  border-bottom: 1px solid var(--warm-cream-dark);
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}
