/* ========================================
   HANDMADE VEGAN LEATHER SHOES BRAND
   Main CSS - Bootstrap 5 Compatible
   ======================================== */

/* Color Palette - Pastel High-Contrast */
:root {
  /* Primary Colors */
  --color-primary: #8B6F47;      /* Leather Brown */
  --color-secondary: #E8D5B7;    /* Cream Beige */
  --color-accent: #7A9A7A;       /* Sage Green */
  --color-earth: #B08968;        /* Warm Earth */
  --color-natural: #F5F5DC;      /* Natural Ivory */
  
  /* Light Shades */
  --color-primary-light: #A68A69;
  --color-secondary-light: #F0E4D1;
  --color-accent-light: #95B195;
  --color-earth-light: #C4A082;
  --color-natural-light: #FAFAF7;
  
  /* Dark Shades */
  --color-primary-dark: #6D5235;
  --color-secondary-dark: #D4C1A4;
  --color-accent-dark: #627762;
  --color-earth-dark: #96754F;
  --color-natural-dark: #E8E8C5;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --line-height-base: 1.6;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --element-margin: 1.5rem 0;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: var(--line-height-base);
  color: var(--color-primary-dark);
  background-color: var(--color-natural-light);
}

/* Conservative Typography */
h1 {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

h5 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

/* Navbar Brand Conservative Size */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Section Spacing */
.section {
  padding: var(--section-padding);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-natural-light) 0%, var(--color-secondary-light) 100%);
  display: flex;
  align-items: center;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--color-accent-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.hero-decorative:nth-child(1) {
  top: 10%;
  right: 10%;
}

.hero-decorative:nth-child(2) {
  bottom: 15%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: var(--color-earth-light);
}

/* Services Cards */
.service-card {
  background: var(--color-natural);
  border: 1px solid var(--color-secondary);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(139, 111, 71, 0.15);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-accent);
}

/* Team Cards */
.team-card {
  background: var(--color-natural);
  border: 1px solid var(--color-secondary);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-secondary);
  margin-bottom: 1rem;
}

/* Review Cards */
.review-card {
  background: var(--color-natural);
  border: 1px solid var(--color-secondary);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

/* FAQ Cards */
.faq-card {
  background: var(--color-natural);
  border: 1px solid var(--color-secondary);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--color-primary-dark);
  margin-bottom: 0;
}

/* Contact Form */
.contact-form {
  background: var(--color-natural);
  border: 1px solid var(--color-secondary);
  border-radius: 0.5rem;
  padding: 2rem;
}

.form-control {
  border: 1px solid var(--color-secondary);
  border-radius: 0.375rem;
  background-color: var(--color-natural-light);
}

.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.2rem rgba(122, 154, 122, 0.25);
}

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  padding: 0.75rem 2rem;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

/* Footer */
.footer {
  background-color: #3D2E1D; /* Darker background for better contrast */
  color: #FFFFFF; /* Pure white for maximum readability */
  padding: 3rem 0 2rem;
}

.footer h5 {
  color: #FFE0A3; /* Light gold for headings */
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-size: 1.25rem;
  border-bottom: 2px solid #856B49;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer a {
  color: #FFD78E; /* Brighter, more visible link color */
  text-decoration: none;
  font-weight: 500; /* Slightly bolder links */
}

.footer a:hover {
  color: #FFFFFF; /* White on hover for contrast */
  text-decoration: underline;
}

.footer p, .footer li {
  line-height: 1.7;
  margin-bottom: 0.7rem;
}

.footer hr {
  border-color: #856B49;
  margin: 2rem 0;
  opacity: 0.7;
}

.footer small {
  color: #DDD;
  font-size: 0.9rem;
}

.disclaimer-text {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #FFD78E;
  font-size: 0.85rem;
  color: #DDD;
}

.disclaimer-text p {
  margin-bottom: 0.5rem;
  text-align: justify;
}

/* Gallery Grid */
.gallery-row img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0.375rem;
  transition: transform 0.3s ease;
}

.gallery-row img:hover {
  transform: scale(1.05);
}

/* Responsive Animations - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .service-card:hover,
  .team-card:hover,
  .gallery-row img:hover {
    transform: none;
  }
}

/* Utility Classes */
.text-muted-custom {
  color: var(--color-earth) !important;
}

.bg-light-custom {
  background-color: var(--color-natural-light);
}

.bg-accent {
  background-color: var(--color-accent-light);
}

/* Icon Colors */
.fas, .far, .fab {
  color: var(--color-accent);
}

/* Border Utilities */
.border-custom {
  border-color: var(--color-secondary);
}

/* Shadow Utilities */
.shadow-custom {
  box-shadow: 0 4px 15px rgba(139, 111, 71, 0.1);
} 

.hero-section h1 {
    padding-top: 275px;
}


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
