/* ========================================
   ENAMEL PIN DESIGN STORE - MAIN STYLES
======================================== */

/* Color Palette - 5 Primary Colors + Shades */
:root {
  --primary-coral: #ff6b6b;
  --primary-purple: #6c5ce7;
  --primary-teal: #00cec9;
  --primary-gold: #fdcb6e;
  --primary-mint: #55efc4;
  
  /* Light Shades */
  --coral-light: #ff8e8e;
  --purple-light: #8b7ed8;
  --teal-light: #26d0ce;
  --gold-light: #fdd085;
  --mint-light: #74f0d1;
  
  /* Dark Shades */
  --coral-dark: #e55555;
  --purple-dark: #5a54d6;
  --teal-dark: #00b8b5;
  --gold-dark: #fcbd47;
  --mint-dark: #3ee6b8;
  
  /* Neutral Colors */
  --dark-gray: #2d3436;
  --light-gray: #ddd;
  --white: #ffffff;
  --black: #000000;
}

/* Base Typography - Conservative Sizes */
body {
  overflow-x: hidden !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  margin: 0;
  padding: 0;
}

h1 { font-size: 2.2rem; font-weight: 700; }
h2 { font-size: 1.8rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.3rem; font-weight: 500; }
h5 { font-size: 1.1rem; font-weight: 500; }

.navbar-brand { 
  font-size: 1.4rem !important; 
  font-weight: 700;
  color: var(--primary-purple) !important;
}

/* Gradient Backgrounds */
.gradient-bg-1 {
  background: linear-gradient(135deg, var(--primary-coral), var(--primary-purple));
}

.gradient-bg-2 {
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-mint));
}

.gradient-bg-3 {
  background: linear-gradient(135deg, var(--primary-gold), var(--coral-light));
}

/* Header Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-link {
  color: var(--dark-gray) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-purple) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-coral), var(--purple-light));
  position: relative;
  overflow: hidden;
}

.hero-shapes::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--primary-teal);
  border-radius: 50%;
  opacity: 0.1;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-shapes::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-gold);
  border-radius: 30%;
  opacity: 0.15;
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-price {
  background: var(--gradient-bg-1);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  margin: 15px 0;
}

/* Team Cards */
.team-member {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: scale(1.05);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary-mint);
  margin: 0 auto 20px;
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  margin: 20px;
  border-left: 5px solid var(--primary-teal);
}

/* FAQ Accordion */
.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  background: var(--gradient-bg-2);
  color: var(--white);
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.faq-answer {
  padding: 20px;
  background: var(--white);
  display: none;
}

/* Gallery */
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--light-gray);
  padding: 15px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.25);
}

.btn-primary {
  background: var(--gradient-bg-1);
  border: none;
  border-radius: 10px;
  padding: 15px 40px;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-bg-1);
}

/* Footer */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer a {
  color: var(--primary-mint);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--mint-light);
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  
  .hero-section {
    text-align: center;
    padding: 80px 0;
  }
  
  .service-card {
    margin-bottom: 30px;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Section Spacing */
.section {
  padding: 80px 0;
}

.section-title {
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--primary-purple);
  margin-bottom: 15px;
  font-weight: 600;
}

.section-description {
  color: var(--dark-gray);
  margin-bottom: 50px;
  font-size: 18px;
}

/* Timeline Styles */
.timeline-year {
  background: var(--primary-purple);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
}

/* Feature Box Styles */
.feature-box {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--light-gray);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Breadcrumb Styles */
.breadcrumb-section {
  background: linear-gradient(135deg, var(--primary-coral), var(--primary-purple));
  padding: 20px 0;
}

/* Additional Button Styles */
.btn-outline-primary {
  border-color: var(--primary-purple);
  color: var(--primary-purple);
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
  color: var(--white);
  transform: translateY(-2px);
} 