/* Magic Shop Template - Main CSS */
:root {
  /* Magic Shop Color Palette */
  --primary-purple: #6B46C1;
  --primary-gold: #F59E0B;
  --primary-midnight: #1F2937;
  --primary-emerald: #10B981;
  --primary-crimson: #DC2626;
  
  /* Light shades */
  --light-purple: #E0E7FF;
  --light-gold: #FEF3C7;
  --light-midnight: #F3F4F6;
  --light-emerald: #D1FAE5;
  --light-crimson: #FEE2E2;
  
  /* Dark shades */
  --dark-purple: #4C1D95;
  --dark-gold: #D97706;
  --dark-midnight: #111827;
  --dark-emerald: #047857;
  --dark-crimson: #991B1B;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.5rem;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--primary-midnight);
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-gold) 100%);
}

/* Header styles */
.navbar {
  background: linear-gradient(90deg, var(--primary-purple) 0%, var(--primary-midnight) 100%);
  box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-gold) !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-gold) !important;
  transform: translateY(-2px);
}

/* Hero section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-midnight) 50%, var(--primary-crimson) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../FLA_images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title {
  font-size: var(--font-size-h1);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: var(--font-size-h3);
  margin-bottom: 1.5rem;
  color: var(--light-gold);
}

.hero-desc {
  font-size: var(--font-size-large);
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Section styles */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-midnight);
}

.section-subtitle {
  font-size: var(--font-size-h3);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-purple);
}

.section-desc {
  font-size: var(--font-size-large);
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-midnight);
  opacity: 0.8;
}

/* Services styles */
.services-section {
  background: var(--light-midnight);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(107, 70, 193, 0.2);
  border-color: var(--primary-gold);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.service-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-midnight);
}

.service-desc {
  margin-bottom: 1.5rem;
  color: var(--primary-midnight);
  opacity: 0.8;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--primary-emerald);
}

.service-features li::before {
  content: '✓ ';
  color: var(--primary-emerald);
  font-weight: bold;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-align: center;
}

/* Team styles */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-gold);
}

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-midnight);
}

.team-role {
  color: var(--primary-purple);
  font-style: italic;
}

/* Testimonials */
.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: var(--font-size-large);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-purple);
}

/* FAQ Styles */
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  color: var(--primary-midnight);
  cursor: pointer;
  border-bottom: 1px solid var(--light-midnight);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--primary-midnight);
  opacity: 0.8;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Process Steps */
.process-step {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-purple), var(--primary-gold));
  color: white;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 20px rgba(107, 70, 193, 0.3);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(107, 70, 193, 0.5);
}

.form-control {
  border: 2px solid var(--light-midnight);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(107, 70, 193, 0.25);
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-purple), var(--primary-gold));
  border: none;
  border-radius: 25px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: var(--font-size-large);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(107, 70, 193, 0.3);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-midnight) 0%, var(--primary-purple) 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-gold);
}

/* Responsive Design */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-card {
    margin-bottom: 1rem;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
} 