/* ========================================
   ETHICAL JEWELRY DESIGN TEMPLATE
   Main Styles with Conservative Font Sizes
======================================== */

:root {
  /* Primary Color Palette - 5 colors + shades */
  --primary-emerald: #2d7d47;
  --primary-emerald-light: #4a9b63;
  --primary-emerald-dark: #1a5c32;
  
  --primary-gold: #d4af37;
  --primary-gold-light: #e6c765;
  --primary-gold-dark: #b8941f;
  
  --primary-rose: #d4755a;
  --primary-rose-light: #e6967d;
  --primary-rose-dark: #b85d42;
  
  --primary-ivory: #f5f2e8;
  --primary-ivory-light: #faf8f0;
  --primary-ivory-dark: #e8e2d5;
  
  --primary-charcoal: #2c2c2c;
  --primary-charcoal-light: #4a4a4a;
  --primary-charcoal-dark: #1a1a1a;
  
  /* Typography */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Source Sans Pro', sans-serif;
  
  /* Conservative Font Sizes */
  --font-size-logo: 1.1rem;
  --font-size-h1: 1.8rem;
  --font-size-h2: 1.5rem;
  --font-size-h3: 1.2rem;
  --font-size-p: 0.95rem;
  --font-size-small: 0.85rem;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-emerald), var(--primary-gold));
  --gradient-secondary: linear-gradient(135deg, var(--primary-rose), var(--primary-ivory));
  --gradient-hero: linear-gradient(rgba(45, 125, 71, 0.8), rgba(212, 175, 55, 0.7));
}

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body { overflow-x: hidden;
  font-family: var(--font-secondary);
  font-size: var(--font-size-p);
  line-height: 1.6;
  color: var(--primary-charcoal);
  background-color: var(--primary-ivory);
}

/* Typography */
h1 {
  font-family: var(--font-primary);
  font-size: var(--font-size-h1);
  font-weight: 700;
  color: var(--primary-charcoal-dark);
  margin-bottom: 1rem;
}

h2 {
  font-family: var(--font-primary);
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--primary-emerald-dark);
  margin-bottom: 0.8rem;
}

h3 {
  font-family: var(--font-primary);
  font-size: var(--font-size-h3);
  font-weight: 500;
  color: var(--primary-charcoal);
  margin-bottom: 0.6rem;
}

p {
  font-size: var(--font-size-p);
  margin-bottom: 1rem;
  color: var(--primary-charcoal-light);
}

/* Header & Navigation */
.navbar {
  background: linear-gradient(135deg, var(--primary-ivory), var(--primary-ivory-light));
  padding: 0.8rem 0;
  box-shadow: 0 2px 10px rgba(45, 125, 71, 0.1);
}

.navbar-brand {
  font-family: var(--font-primary);
  font-size: var(--font-size-logo);
  font-weight: 700;
  color: var(--primary-emerald-dark) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-size: var(--font-size-p);
  font-weight: 500;
  color: var(--primary-charcoal) !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-emerald) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../KOL_images/hero-bg.webp') center/cover;
  z-index: -1;
}

.hero-content {
  z-index: 2;
  color: white;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-image {
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Buttons */
.btn-primary-custom {
  background: var(--gradient-primary);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(45, 125, 71, 0.3);
  color: white;
}

/* Section Styling */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-emerald);
  font-size: var(--font-size-small);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-price {
  color: var(--primary-gold);
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 1rem;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-gold);
}

/* Testimonials Slider */
.testimonials-section {
  background: var(--gradient-secondary);
  padding: 80px 0;
}

.testimonial-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  margin: 0 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--primary-charcoal);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-emerald-dark);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-emerald-dark);
  border-bottom: 1px solid var(--primary-ivory);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--primary-charcoal-light);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 2px solid var(--primary-ivory-dark);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: var(--font-size-p);
  transition: border-color 0.3s ease;
  width: 100%;
}

.form-control:focus {
  border-color: var(--primary-emerald);
  box-shadow: 0 0 0 0.2rem rgba(45, 125, 71, 0.25);
  outline: none;
}

/* Footer */
.footer {
  background: var(--gradient-primary);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: var(--font-size-h3);
}

.footer-section p,
.footer-section a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: var(--font-size-small);
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  text-align: center;
}

.copyright {
  font-size: var(--font-size-small);
  opacity: 0.8;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  color: var(--primary-emerald-dark);
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  color: var(--primary-charcoal-light);
  font-size: var(--font-size-small);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-emerald);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-small);
}

.blog-link:hover {
  color: var(--primary-emerald-dark);
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--primary-ivory-light);
}

.breadcrumb-img {
  height: 24px;
  width: auto;
}

/* Utilities */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1.5rem; }

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
