/* Main CSS for Mood-Based Playlist Curation Template */

:root {
  /* Primary Color Palette - 5 main colors with light/dark shades */
  --primary-purple: #7c3aed;
  --primary-purple-light: #a855f7;
  --primary-purple-dark: #5b21b6;
  
  --primary-teal: #14b8a6;
  --primary-teal-light: #5eead4;
  --primary-teal-dark: #0f766e;
  
  --primary-coral: #f97316;
  --primary-coral-light: #fed7aa;
  --primary-coral-dark: #ea580c;
  
  --primary-indigo: #4f46e5;
  --primary-indigo-light: #a5b4fc;
  --primary-indigo-dark: #3730a3;
  
  --primary-emerald: #059669;
  --primary-emerald-light: #6ee7b7;
  --primary-emerald-dark: #047857;
  
  /* Neutral colors */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --black: #000000;
  
  /* Conservative font sizes */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-purple), var(--primary-teal));
  --gradient-secondary: linear-gradient(135deg, var(--primary-coral), var(--primary-indigo));
  --gradient-accent: linear-gradient(135deg, var(--primary-emerald), var(--primary-purple-light));
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--gray-800);
  overflow-x: hidden;
}

/* 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 styles */
.navbar {
  background: var(--gradient-primary);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: var(--font-size-xl) !important;
  font-weight: 700;
  color: var(--white) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-coral-light) !important;
}

/* Hero section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-secondary);
  position: relative;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-section h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
}

/* Section styles */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  text-align: center;
  color: var(--gray-600);
  margin-bottom: 3rem;
}

/* Card styles */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-img-top {
  border-radius: 15px 15px 0 0;
  height: 200px;
  object-fit: cover;
}

/* Service cards */
.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-purple);
  margin: 1rem 0;
}

/* Feature items */
.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

/* Team cards */
.team-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: scale(1.05);
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-card-body {
  overflow-x: hidden !important;
  padding: 1.5rem;
  text-align: center;
}

/* Testimonial slider */
.testimonial-card {
  background: var(--gradient-accent);
  color: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem;
  text-align: center;
}

/* FAQ section */
.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-header {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1.25rem;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  font-weight: 600;
}

.faq-body {
  overflow-x: hidden !important;
  padding: 1.25rem;
  color: var(--gray-700);
  border-radius: 0 0 10px 10px;
}

/* Contact form */
.contact-form {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-primary);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px 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-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  overflow-x: hidden !important;
  padding: 1.5rem;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-coral-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-teal-light);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Utility classes */
.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.bg-gradient-accent {
  background: var(--gradient-accent);
}

.text-primary-purple {
  color: var(--primary-purple);
}

.text-primary-teal {
  color: var(--primary-teal);
}

.border-radius-lg {
  border-radius: 15px;
}

/* Breadcrumb styles */
.breadcrumb-img {
  max-height: 40px;
  width: auto;
}

.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

/* Space page specific */
#space {
  min-height: 80vh;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#space::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../INH_images/space-bg.webp') center/cover;
  opacity: 0.3;
}
