/* Local Makers' Gift Guide - Main CSS */

/* CSS Variables - 5 Primary Colors + Shades */
:root {
  --primary-burgundy: #86142d;
  --primary-sage: #aabea0;
  --primary-cream: #f6efdf;
  --primary-terracotta: #c86d28;
  --primary-navy: #2f424e;
  
  /* Light Shades */
  --light-burgundy: #af5475;
  --light-sage: #aab2a4;
  --light-cream: #FEFBF5;
  --light-terracotta: #e18347;
  --light-navy: #364c60;
  
  /* Dark Shades */
  --dark-burgundy: #500e22;
  --dark-sage: #7d866b;
  --dark-cream: #e1ded6;
  --dark-terracotta: #964124;
  --dark-navy: #1f2e38;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-normal: 1rem;
  --font-size-medium: 1.125rem;
  --font-size-large: 1.25rem;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--primary-terracotta) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-cream) 100%);
  --gradient-accent: linear-gradient(45deg, var(--primary-navy) 0%, var(--primary-burgundy) 50%, var(--primary-terracotta) 100%);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-normal);
  line-height: 1.6;
  color: var(--dark-navy);
  background-color: var(--light-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, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--primary-navy);
}

h1 {
  font-size: 2.60rem;
}

h2 {
  font-size: 2.09rem;
}

h3 {
  font-size: 1.78rem;
}

h4 {
  font-size: 1.56rem;
}

h5 {
  font-size: 1.40rem;
}

h6 {
  font-size: var(--font-size-large);
}

p {
  margin-bottom: 1.25rem;
  font-size: var(--font-size-normal);
}

.text-center {
  text-align: center;
}

/* Header */
.navbar {
  background: var(--gradient-primary);
  padding: 1rem 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: var(--font-size-large);
  font-weight: bold;
  color: var(--light-cream) !important;
}

.navbar-nav .nav-link {
  color: var(--light-cream) !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 {
  min-height: 100vh;
  background: var(--gradient-primary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../ZIG_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero .hero-content {
  padding-top: 100px !important;
  color: white;
}

#hero .hero-title {
  font-size: 3.52rem;
  font-weight: 700;
  margin-bottom: 1.72rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#hero .hero-subtitle {
  font-size: 1.56rem;
  margin-bottom: 2.11rem;
  opacity: 0.9;
}

#hero .hero-desc {
  font-size: var(--font-size-medium);
  margin-bottom: 2.72rem;
  opacity: 0.8;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-sage);
  top: 20%;
  right: 10%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-cream);
  bottom: 15%;
  left: 5%;
}

/* About Section */
#about {
  padding: 5rem 0;
  background: var(--light-cream);
}

.about-feature {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 7px 18px rgba(0,0,0,0.1);
  margin-bottom: 2.11rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-7px);
}

.about-feature i {
  font-size: 3.02rem;
  color: var(--primary-sage);
  margin-bottom: 1.25rem;
}

/* Services Section */
#services {
  padding: 5rem 0;
  background: var(--gradient-secondary);
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 12px 210px rgba(0,0,0,0.1);
  margin-bottom: 2.11rem;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.72rem;
}

.service-price {
  font-size: 2.09rem;
  font-weight: bold;
  color: var(--primary-burgundy);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--dark-navy);
}

.service-features li:before {
  content: "âœ“";
  color: var(--primary-sage);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Features Section */
#fff5aetures {
  padding: 5rem 0;
  background: var(--primary-cream);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2.11rem;
}

.feature-item i {
  font-size: 3.52rem;
  color: var(--primary-terracotta);
  margin-bottom: 1.72rem;
}

/* Price Plan Section */
#priceplan {
  padding: 5rem 0;
  background: var(--gradient-accent);
  color: white;
}

.price-card {
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 2.11rem;
  color: var(--dark-navy);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: scale(1.05);
}

.price-card.featured {
  transform: scale(1.05);
  background: white;
}

.price-amount {
  font-size: 3.02rem;
  font-weight: bold;
  color: var(--primary-burgundy);
  margin: 1.5rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

/* Team Section */
#team {
  padding: 5rem 0;
  background: var(--light-cream);
}

.team-member {
  text-align: center;
  margin-bottom: 3.10rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.72rem;
  border: 5px solid var(--primary-sage);
  transition: transform 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.1);
}

.team-member-name {
  font-size: 1.56rem;
  font-weight: bold;
  color: var(--primary-navy);
  margin-bottom: 0.58rem;
}

.team-member-role {
  color: var(--primary-sage);
  font-style: italic;
}

/* Reviews Section */
#reviews {
  padding: 5rem 0;
  background: var(--primary-sage);
  color: white;
}

.review-item {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2.11rem;
  backdrop-filter: blur(10px);
}

.review-author {
  font-weight: bold;
  margin-top: 1.69rem;
  color: var(--light-cream);
}

.review-text {
  font-style: italic;
  font-size: var(--font-size-medium);
  line-height: 1.8;
}

/* Case Study Section */
#casestudy {
  padding: 5rem 0;
  background: white;
}

.case-study-item {
  background: var(--light-cream);
  border-radius: 10px;
  padding: 2.5rem;
  margin-bottom: 2.11rem;
  border-left: 5px solid var(--primary-terracotta);
}

/* Process Section */
#process {
  padding: 5rem 0;
  background: var(--gradient-secondary);
}

.process-step {
  text-align: center;
  margin-bottom: 3.10rem;
  position: relative;
}

.process-step .step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-burgundy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.56rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

/* Timeline Section */
#timeline {
  padding: 5rem 0;
  background: var(--primary-cream);
}

.timeline-item {
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  margin-bottom: 2.11rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 20px;
  width: 20px;
  height: 20px;
  background: var(--primary-terracotta);
  border-radius: 50%;
}

/* Career Section */
#career {
  padding: 5rem 0;
  background: var(--light-sage);
}

.career-item {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2.11rem;
  transition: transform 0.3s ease;
}

.career-item:hover {
  transform: translateY(-5px);
}

.career-role {
  color: var(--primary-burgundy);
  font-weight: bold;
  margin-top: 1.22rem;
}

/* Core Info Section */
#coreinfo {
  padding: 5rem 0;
  background: var(--dark-navy);
  color: white;
}

.core-info-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2.11rem;
}

.core-info-item i {
  font-size: 3.02rem;
  color: var(--primary-sage);
  margin-bottom: 1.72rem;
}

/* Blog Section */
#blog {
  padding: 5rem 0;
  background: var(--light-cream);
}

.blog-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2.11rem;
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  color: var(--primary-navy);
  margin-bottom: 1.25rem;
}

.blog-excerpt {
  color: #757575;
  margin-bottom: 1.25rem;
}

.blog-link {
  color: var(--primary-burgundy);
  text-decoration: none;
  font-weight: bold;
}

.blog-link:hover {
  text-decoration: underline;
}

/* FAQ Section */
#faq {
  padding: 5rem 0;
  background: var(--gradient-secondary);
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  background: var(--primary-burgundy);
  color: white;
  padding: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  margin: 0;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--dark-burgundy);
}

.faq-answer {
  padding: 1.5rem;
  border-top: 1px solid #eee;
  margin: 0;
}

/* Gallery Section */
#gallery {
  padding: 5rem 0;
  background: var(--primary-cream);
}

.gallery-item {
  margin-bottom: 2.11rem;
  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.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Contact Section */
#contacts {
  padding: 5rem 0;
  background: var(--gradient-primary);
  color: white;
}

.contact-form {
  background: rgba(255,255,255,0.95);
  border-radius: 15px;
  padding: 3rem;
  color: var(--dark-navy);
}

.form-group {
  margin-bottom: 1.72rem;
}

.form-control {
  border: 2px solid #d4d4d4;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-normal);
  transition: border-color 0.3s ease;
  width: 100%;
}

.form-control:focus {
  border-color: var(--primary-sage);
  outline: none;
  box-shadow: 0 0 0 5px rgba(172, 193, 135, 0.10);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: var(--font-size-medium);
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-info {
  margin-top: 3.10rem;
}

.contact-info p {
  font-size: var(--font-size-medium);
  margin-bottom: 1.25rem;
}

/* Footer */
footer {
  background: var(--dark-navy);
  color: var(--light-cream);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2.11rem;
}

.footer-section h5 {
  color: var(--primary-sage);
  margin-bottom: 1.72rem;
}

.footer-section a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-sage);
}

.footer-bottom {
  border-top: 1px solid var(--light-navy);
  padding-top: 2.23rem;
  text-align: center;
}

/* Utilities */
.section-padding {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--light-cream) !important;
}

.bg-dark {
  background-color: var(--dark-navy) !important;
}

.text-primary {
  color: var(--primary-burgundy) !important;
}

.text-secondary {
  color: var(--primary-sage) !important;
}

/* Space Page */
#space {
  min-height: 60vh;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.09rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb img {
  height: 20px;
  opacity: 0.7;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-up {
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.60rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.40rem !important;
  }
  
  .service-card,
  .price-card {
    margin-bottom: 1.72rem;
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  h1 { font-size: 2.09rem; }
  h2 { font-size: 1.78rem; }
  h3 { font-size: 1.56rem; }
  
  .section-padding {
    padding: 3rem 0;
  }
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
