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

/* ========== COLOR PALETTE ========== */
:root {
  /* Primary Theater Colors */
  --color-primary: #80143f;      /* Deep theatrical red */
  --color-secondary: #2f1811;    /* Rich dark brown */
  --color-accent: #e3c635;       /* Golden spotlight */
  --color-neutral: #544f50;      /* Charcoal gray */
  --color-highlight: #debd99;    /* Warm cream */
  
  /* Light/Dark Variations */
  --color-primary-light: #b44466;
  --color-primary-dark: #57142a;
  --color-secondary-light: #44221a;
  --color-secondary-dark: #120c05;
  --color-accent-light: #ecac45;
  --color-accent-dark: #cf7d00;
  --color-neutral-light: #7d7d7d;
  --color-neutral-dark: #353535;
  --color-highlight-light: #f3eedf;
  --color-highlight-dark: #e5d5aa;
  
  /* 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: 225px;
}

/* ========== 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(161, 31, 73, 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;
  }
} 


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

.x-link::after {
    content: '✦';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
