/* Stationery Boutique Main Styles */

:root {
  /* Primary Color Palette - 5 colors with light/dark shades */
  --primary-cream: #f7f3e9;
  --primary-cream-light: #faf8f1;
  --primary-cream-dark: #f0e9d9;
  
  --primary-sage: #9caf88;
  --primary-sage-light: #b5c4a7;
  --primary-sage-dark: #7d8c6a;
  
  --primary-terracotta: #d4a574;
  --primary-terracotta-light: #e1ba92;
  --primary-terracotta-dark: #c29456;
  
  --primary-navy: #2c3e50;
  --primary-navy-light: #34495e;
  --primary-navy-dark: #1a252f;
  
  --primary-gold: #e8c547;
  --primary-gold-light: #efcf6b;
  --primary-gold-dark: #d1b23f;
  
  /* Text Colors */
  --text-dark: #2c3e50;
  --text-light: #f7f3e9;
  --text-muted: #6c757d;
  
  /* Conservative Font Sizes */
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-h6: 16px;
  --font-size-h5: 18px;
  --font-size-h4: 20px;
  --font-size-h3: 24px;
  --font-size-h2: 28px;
  --font-size-h1: 32px;
  --navbar-brand-size: 20px;
}

/* 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;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--primary-cream);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
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); }

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-navy);
}

p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

/* Navbar */
.navbar {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--primary-cream-light) 100%);
  box-shadow: 0 2px 10px rgba(44, 62, 80, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: var(--navbar-brand-size) !important;
  font-weight: 700;
  color: var(--primary-navy) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
  color: var(--primary-navy) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-sage) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--primary-sage-light) 50%, var(--primary-terracotta-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-gold-light) 0%, transparent 70%);
  opacity: 0.3;
  animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-title {
  font-size: var(--font-size-h1);
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: var(--primary-navy-light);
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: var(--font-size-base);
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(45deg, var(--primary-cream-light) 0%, var(--primary-gold-light) 100%);
  padding: 5rem 0;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(44, 62, 80, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.15);
}

.service-price {
  color: var(--primary-terracotta);
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, var(--primary-sage-light) 0%, var(--primary-cream) 100%);
  padding: 5rem 0;
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(44, 62, 80, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-gold);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
  color: var(--text-light);
  padding: 5rem 0;
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-control {
  border: 2px solid var(--primary-cream-dark);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(156, 175, 136, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-sage-dark) 100%);
  border: none;
  border-radius: 10px;
  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(156, 175, 136, 0.4);
  background: linear-gradient(135deg, var(--primary-sage-dark) 0%, var(--primary-sage) 100%);
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(45deg, var(--primary-terracotta-light) 0%, var(--primary-cream-light) 100%);
  padding: 5rem 0;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(44, 62, 80, 0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  border-bottom: 1px solid var(--primary-cream-dark);
  font-weight: 600;
  color: var(--primary-navy);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-muted);
  display: none;
}

/* Gallery Section */
.gallery-section {
  background: var(--primary-cream-light);
  padding: 5rem 0;
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(44, 62, 80, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: #a79e80;
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--primary-gold-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-gold);
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item {
  font-size: var(--font-size-sm);
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Utility Classes */
.text-primary { color: var(--primary-sage) !important; }
.text-secondary { color: var(--primary-terracotta) !important; }
.bg-light { background-color: var(--primary-cream-light) !important; }
.bg-dark { background-color: var(--primary-navy) !important; }

/* Contact Info */
#contact-info-phone,
#contact-info-email,
#contact-info-address {
  margin-bottom: 0.5rem;
  font-size: var(--font-size-base);
}

#site-copyright {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  opacity: 0.8;
} 