/* Leipzig Lifelong Learning Fair - Main CSS */

/* Color Palette Variables */
:root {
  --primary-orange: #FF8C42;
  --primary-teal: #2E8B8B;
  --primary-purple: #6B4E7D;
  --primary-emerald: #52B788;
  --primary-burgundy: #7F4F24;
  
  /* Light shades */
  --light-orange: #FFB380;
  --light-teal: #70B8B8;
  --light-purple: #9A7BA8;
  --light-emerald: #8FD5A6;
  --light-burgundy: #B8825A;
  
  /* Dark shades */
  --dark-orange: #CC5A00;
  --dark-teal: #1F5C5C;
  --dark-purple: #4A3558;
  --dark-emerald: #3A8B62;
  --dark-burgundy: #5D3A1B;
  
  /* Neutral colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #6C757D;
  --dark-gray: #343A40;
  --black: #212529;
}

/* Base Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Conservative font sizes */
h1 { font-size: 2rem; font-weight: 700; }
h2 { font-size: 1.75rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.1rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Header */
.navbar {
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-emerald));
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  color: var(--white) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-size: 12px !important;
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-orange) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-burgundy));
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../MAP_images/mcw_hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-section .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Decorative blob shapes */
.blob-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.blob-1 { width: 200px; height: 200px; top: 10%; right: 10%; animation-delay: 0s; }
.blob-2 { width: 150px; height: 150px; bottom: 20%; left: 10%; animation-delay: 2s; }
.blob-3 { width: 100px; height: 100px; top: 60%; right: 30%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Section styling */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
}

/* About Section */
.about-section {
  background: var(--light-gray);
}

.feature-box {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--light-teal), var(--light-emerald));
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-purple));
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  background: var(--light-gray);
}

.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: 5px solid var(--primary-emerald);
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-teal);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--gray);
  font-style: italic;
}

/* Reviews/Testimonials */
.reviews-section {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-teal));
  color: var(--white);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--light-orange);
}

/* Price Plans */
.priceplan-section {
  background: var(--light-gray);
}

.price-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: scale(1.05);
}

.price-card.featured {
  border: 3px solid var(--primary-orange);
  transform: scale(1.05);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Process Steps */
.process-section {
  background: linear-gradient(135deg, var(--light-emerald), var(--light-teal));
}

.process-step {
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--light-gray);
  padding: 1.5rem;
  margin: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-teal);
  color: var(--white);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  background: var(--white);
}

.faq-answer.active {
  display: block;
}

/* Contact Form */
.contact-section {
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-emerald));
  color: var(--white);
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.form-control {
  border: none;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-burgundy));
  border: none;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--dark-orange), var(--dark-burgundy));
}

/* Gallery */
.gallery-section {
  background: var(--light-gray);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Blog Section */
.blog-section {
  background: var(--white);
}

.blog-card {
  background: var(--light-gray);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-gray), var(--black));
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  border-top: 1px solid var(--gray);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

/* Timeline */
.timeline-section {
  background: var(--light-gray);
}

.timeline-item {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--primary-orange);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Career Section */
.career-section {
  background: linear-gradient(135deg, var(--light-purple), var(--light-emerald));
}

.career-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
}

.career-title {
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

.career-role {
  background: var(--primary-orange);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Case Studies */
.casestudy-section {
  background: var(--white);
}

.case-card {
  background: linear-gradient(135deg, var(--light-gray), var(--white));
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-left: 5px solid var(--primary-emerald);
}

/* Core Info */
.coreinfo-section {
  background: linear-gradient(135deg, var(--primary-burgundy), var(--primary-purple));
  color: var(--white);
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-icon {
  font-size: 3rem;
  color: var(--light-orange);
  margin-bottom: 1rem;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section .lead {
    font-size: 1rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .service-card,
  .team-member,
  .price-card {
    margin-bottom: 2rem;
  }
  
  .swiper-slide {
    /* Disable autoplay and effects on mobile */
  }
} 