/* Handmade Vegan Leather Shoes Brand - Main Styles */

/* Color Palette - Earthy tones suitable for vegan leather brand */
:root {
  --primary-color: #9e3f0b; /* Saddle Brown */
  --secondary-color: #dcbf75; /* Burlywood */
  --accent-color: #2f8a32; /* Forest Green - vegan emphasis */
  --neutral-color: #eaeae6; /* Beige */
  --dark-color: #452d22; /* Dark Brown */
  
  /* Light/Dark Shades */
  --primary-light: #a94827;
  --primary-dark: #512e1c;
  --secondary-light: #d7cc8b;
  --secondary-dark: #d7bb7e;
  --accent-light: #2be534;
  --accent-dark: #095804;
  --neutral-light: #FFFAF0;
  --neutral-dark: #d7ae8f;
  --dark-light: #4b3531;
}

/* Base Typography - Conservative Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-color);
  line-height: 1.6;
}

.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--primary-color);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
}

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

p {
  font-size: 1rem;
  color: var(--dark-light);
}

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

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

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

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
}

/* Sections */
.section-padding {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.section-desc {
  color: var(--dark-light);
  margin-bottom: 50px;
}

/* Cards */
.custom-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-radius: 15px;
  overflow: hidden;
}

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

.service-card {
  background: var(--neutral-light);
  border-left: 4px solid var(--primary-color);
}

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

/* Team Cards */
.team-card {
  text-align: center;
  background: white;
}

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

/* Review Cards */
.review-card {
  background: var(--neutral-light);
  border-left: 4px solid var(--accent-color);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 20px;
}

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

/* Contact Form */
.contact-form {
  background: var(--neutral-light);
  padding: 40px;
  border-radius: 15px;
}

.form-control {
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  padding: 12px 15px;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(128, 77, 25, 0.25);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
}

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

/* Gallery */
.gallery-grid img {
  border-radius: 15px;
  transition: transform 0.3s ease;
}

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

/* Footer */
.footer {
  background: var(--accent-light);
  color: var(--neutral-light);
  padding: 50px 0 20px;
}

.footer h5 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.footer a {
  color: var(--neutral-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--secondary-color);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .custom-card,
  .gallery-grid img {
    transition: none;
  }
  
  .custom-card:hover,
  .gallery-grid img:hover {
    transform: none;
  }
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 20px 0;
  background: var(--neutral-light);
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
  object-fit: contain;
} 

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


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

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

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

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