/* Pop-up Immersive Theater Production Company - Main Styles */

/* ========== COLOR PALETTE ========== */
:root {
  /* Primary Theater Colors */
  --color-primary: #8c234b;      /* Deep theatrical red */
  --color-secondary: #30120d;    /* Rich dark brown */
  --color-accent: #e49e1b;       /* Golden spotlight */
  --color-neutral: #353333;      /* Charcoal gray */
  --color-highlight: #e9d0a9;    /* Warm cream */
  
  /* Light/Dark Variations */
  --color-primary-light: #bd496d;
  --color-primary-dark: #5f0a2b;
  --color-secondary-light: #381a15;
  --color-secondary-dark: #2e1d10;
  --color-accent-light: #cea553;
  --color-accent-dark: #bba409;
  --color-neutral-light: #615d5d;
  --color-neutral-dark: #1a1a1a;
  --color-highlight-light: #ffecd5;
  --color-highlight-dark: #e8d9c1;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-h5: 1.125rem;
  --font-size-h4: 1.25rem;
  --font-size-h3: 1.5rem;
  --font-size-h2: 1.75rem;
  --font-size-h1: 2rem;
  
  /* Conservative navbar brand size */
  --navbar-brand-size: 1.125rem;
}

/* ========== TYPOGRAPHY ========== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-neutral-dark);
  background-color: #ffffff;
}

/* Conservative heading sizes */
h1 { 
  font-size: var(--font-size-h1);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

h2 { 
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 0.875rem;
}

h3 { 
  font-size: var(--font-size-h3);
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

h4 { 
  font-size: var(--font-size-h4);
  font-weight: 500;
  margin-bottom: 0.625rem;
}

h5 { 
  font-size: var(--font-size-h5);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

h6 { 
  font-size: var(--font-size-h6);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: var(--color-neutral);
}

/* ========== HEADER & NAVIGATION ========== */
.navbar-brand {
  font-size: var(--navbar-brand-size);
  font-weight: 700;
  color: var(--color-primary);
}

.navbar-nav .nav-link {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--color-neutral-dark);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-primary);
}

/* ========== HERO SECTION ========== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-highlight-light) 0%, var(--color-highlight) 50%, var(--color-highlight-dark) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--color-accent-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 125px;
}

/* ========== SECTIONS ========== */
.section-padding {
  padding: 4rem 0;
}

.section-title {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--color-accent-dark);
  margin-bottom: 2rem;
}

.section-desc {
  color: var(--color-neutral);
  margin-bottom: 3rem;
}

/* ========== SERVICES ========== */
.service-card {
  background: #ffffff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 6px 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 8px 15px rgba(0, 0, 0, 0.15);
}

.service-price {
  color: var(--color-accent-dark);
  font-weight: 700;
  font-size: var(--font-size-lg);
}

/* ========== FEATURES ========== */
.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  color: var(--color-accent);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* ========== TEAM ========== */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-highlight);
  margin-bottom: 1rem;
}

/* ========== TESTIMONIALS/REVIEWS ========== */
.review-card {
  background: var(--color-highlight-light);
  border: none;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 3rem;
  color: var(--color-accent);
  font-family: serif;
}

/* ========== FAQ ========== */
.faq-card {
  background: #ffffff;
  border: 1px solid var(--color-highlight);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.faq-question {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--color-neutral);
}

/* ========== CONTACT FORM ========== */
.contact-form {
  background: var(--color-highlight-light);
  padding: 2rem;
  border-radius: 8px;
}

.form-control {
  border: 1px solid var(--color-highlight-dark);
  border-radius: 4px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(142, 22, 75, 0.25);
}

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 4px;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

/* ========== FOOTER ========== */
.footer {
  background-color: var(--color-secondary-dark);
  color: var(--color-highlight-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--color-highlight);
  text-decoration: none;
}

.footer a:hover {
  color: var(--color-accent-light);
}

/* ========== GALLERY ========== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ========== PRICE PLAN ========== */
.price-card {
  background: #ffffff;
  border: 2px solid var(--color-highlight);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: border-color 0.3s ease;
}

.price-card:hover {
  border-color: var(--color-accent);
}

.price-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 1rem 0;
}

/* ========== CASE STUDY ========== */
.case-study-card {
  background: var(--color-highlight-light);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

/* ========== PROCESS ========== */
.process-step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.process-number {
  background: var(--color-accent);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* ========== TIMELINE ========== */
.timeline-item {
  border-left: 3px solid var(--color-accent);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* ========== CAREER ========== */
.career-card {
  background: #ffffff;
  border: 1px solid var(--color-highlight);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.career-role {
  color: var(--color-accent-dark);
  font-weight: 600;
  font-size: var(--font-size-sm);
}

/* ========== CORE INFO ========== */
.coreinfo-item {
  background: var(--color-highlight-light);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

/* ========== BLOG ========== */
.blog-card {
  background: #ffffff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
}

.blog-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
} 

/* ========== MOBILE ANIMATION DISABLER ========== */
/* Class added via JS on mobile devices */
.mobile-no-animation *,
.mobile-no-animation *::before,
.mobile-no-animation *::after {
  animation: none !important;
  transition: none !important;
  transform: none !important;
  animation-duration: 0s !important;
  animation-delay: 0s !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0s !important;
  transition-delay: 0s !important;
}

.mobile-no-animation [data-sal],
.mobile-no-animation .gentle-pulse,
.mobile-no-animation .service-card,
.mobile-no-animation .gallery-item img,
.mobile-no-animation .blog-card,
.mobile-no-animation .social-link,
.mobile-no-animation .price-card {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
