/* Hand-Drawn Map Shop Template - Main CSS */
:root {
  /* Primary Color Palette - 5 Colors + Shades */
  --primary-brown: #8B4513;
  --primary-brown-light: #A0522D;
  --primary-brown-dark: #654321;
  
  --primary-sage: #87A96B;
  --primary-sage-light: #9BB77C;
  --primary-sage-dark: #6B8A4F;
  
  --primary-cream: #F5F5DC;
  --primary-cream-light: #FEFDF8;
  --primary-cream-dark: #E8E8CD;
  
  --primary-terracotta: #D2691E;
  --primary-terracotta-light: #E07834;
  --primary-terracotta-dark: #B8571A;
  
  --primary-charcoal: #36454F;
  --primary-charcoal-light: #4A5862;
  --primary-charcoal-dark: #2C3B42;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-size-h1: 2.2rem;
  --font-size-h2: 1.8rem;
  --font-size-h3: 1.5rem;
  --font-size-navbar-brand: 1.4rem;
}

/* Base Styles */
body {
  font-family: 'Georgia', serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--primary-charcoal);
  background-color: var(--primary-cream);
}

/* Typography */
h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }

.navbar-brand {
  font-size: var(--font-size-navbar-brand) !important;
  color: var(--primary-brown) !important;
  font-weight: bold;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header Styles */
.navbar {
  background: linear-gradient(135deg, var(--primary-cream), var(--primary-cream-light));
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--primary-charcoal);
  font-weight: 500;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-brown);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-sage-light), var(--primary-sage));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../ZEN_images/hero-map-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--primary-cream);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: var(--primary-cream-light);
  font-size: var(--font-size-large);
  margin-bottom: 2rem;
}

/* Services Section */
.services-section {
  background: var(--primary-cream-light);
  padding: 5rem 0;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  border: 2px solid var(--primary-sage-light);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  font-size: 1.8rem;
  color: var(--primary-terracotta);
  font-weight: bold;
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, var(--primary-brown-light), var(--primary-brown));
  color: var(--primary-cream);
  padding: 5rem 0;
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-cream);
  margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-section {
  background: var(--primary-charcoal-dark);
  padding: 5rem 0;
}

.gallery-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--primary-sage), var(--primary-sage-dark));
  color: var(--primary-cream);
  padding: 5rem 0;
}

.contact-form {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.contact-form .form-control {
  background: rgba(255,255,255,0.9);
  border: 2px solid var(--primary-sage-light);
  border-radius: 8px;
  padding: 0.8rem;
}

.btn-primary {
  background: var(--primary-terracotta);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-terracotta-dark);
  transform: translateY(-2px);
}

/* Blog Section */
.blog-section {
  background: var(--primary-cream);
  padding: 5rem 0;
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background: var(--primary-terracotta-light);
  padding: 5rem 0;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background: var(--primary-cream);
  color: var(--primary-charcoal);
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-sage-light);
  color: var(--primary-charcoal-dark);
}

/* Footer */
.footer {
  background: var(--primary-charcoal);
  color: var(--primary-cream-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-sage-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--primary-cream-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-sage-light);
}

.footer-bottom {
  border-top: 1px solid var(--primary-charcoal-light);
  margin-top: 2rem;
  padding-top: 1rem;
}

/* Breadcrumbs */
.breadcrumb-img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-brown), var(--primary-terracotta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--primary-charcoal-light);
  margin-bottom: 2rem;
}

.decorative-shape {
  position: absolute;
  background: var(--primary-sage-light);
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
