/* Movie Theater Template - Main CSS */

:root {
  /* Color Palette - 5 primary colors with light/dark variations */
  --cinema-red: #dc2626;
  --cinema-red-light: #f87171;
  --cinema-red-dark: #991b1b;
  
  --cinema-gold: #f59e0b;
  --cinema-gold-light: #fbbf24;
  --cinema-gold-dark: #d97706;
  
  --cinema-dark: #1f2937;
  --cinema-dark-light: #374151;
  --cinema-dark-darker: #111827;
  
  --cinema-purple: #7c3aed;
  --cinema-purple-light: #a78bfa;
  --cinema-purple-dark: #5b21b6;
  
  --cinema-teal: #0891b2;
  --cinema-teal-light: #22d3ee;
  --cinema-teal-dark: #0e7490;
  
  /* Text Colors */
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #ffffff;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--cinema-red), var(--cinema-purple));
  --gradient-secondary: linear-gradient(135deg, var(--cinema-gold), var(--cinema-teal));
  --gradient-dark: linear-gradient(135deg, var(--cinema-dark), var(--cinema-dark-darker));
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: #ffffff;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography - Conservative sizes */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Header Styles */
.navbar {
  background: var(--gradient-dark) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--cinema-gold) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--cinema-gold) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-primary);
  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('../TRA_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--cinema-dark);
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(45deg, #f8fafc, #e2e8f0);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 3rem;
  color: var(--cinema-red);
  margin-bottom: 1rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--cinema-gold);
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  background: var(--cinema-dark);
  color: var(--text-light);
}

.team-card {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--cinema-gold);
}

/* Reviews Section */
.reviews-section {
  background: var(--gradient-secondary);
  color: var(--text-light);
}

.review-card {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  margin: 1rem 0;
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px 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;
}

/* FAQ Section */
.faq-section {
  background: #f8fafc;
}

.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;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid #e2e8f0;
  background: var(--gradient-primary);
  color: white;
  margin: 0;
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-secondary);
  display: none;
}

/* Contact Section */
.contact-section {
  background: var(--gradient-dark);
  color: var(--text-light);
}

.contact-form {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.form-control {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--text-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  background: rgba(255,255,255,0.2);
  border-color: var(--cinema-gold);
  box-shadow: 0 0 0 0.2rem rgba(245,158,11,0.25);
  color: var(--text-light);
}

.form-control::placeholder {
  color: rgba(255,255,255,0.7);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-primary);
}

/* Footer */
.footer {
  background: var(--cinema-dark-darker);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer-link {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--cinema-gold);
}

/* Breadcrumbs */
.breadcrumb-section {
  padding: 2rem 0;
  background: var(--gradient-primary);
}

.breadcrumb-img {
  max-height: 40px;
  filter: brightness(0) invert(1);
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.shadow-custom {
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Decorative Elements */
.decorative-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-secondary);
  opacity: 0.1;
  z-index: 1;
}

.blob-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
}

.blob-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
} 