/* ===================================
   ESCAPE ROOM EXPERIENCE DESIGN TEMPLATE
   Main CSS - Bootstrap 5 Compatible
   =================================== */

/* Color Palette - 5 Primary Colors + Shades */
:root {
  /* Primary Colors - Pastel High Contrast */
  --primary-purple: #8363aa;
  --primary-teal: #4ab7a3;
  --primary-coral: #ff6a8c;
  --primary-gold: #ffcc3d;
  --primary-slate: #3c3f40;
  
  /* Light Shades */
  --light-purple: #efe2f1;
  --light-teal: #b6faff;
  --light-coral: #f9dde7;
  --light-gold: #f4e7b8;
  --light-slate: #dcd2f0;
  
  /* Dark Shades */
  --dark-purple: #4e356f;
  --dark-teal: #2f7573;
  --dark-coral: #d7628e;
  --dark-gold: #c0a32b;
  --dark-slate: #252b2d;
}

/* Conservative Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary-slate);
}

/* Headings - Conservative Sizes */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-slate);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-slate);
  margin-bottom: 0.5rem;
}

/* Navbar - Conservative Brand Size */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-purple);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--primary-slate);
  transition: color 0.3s ease;
}

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

/* Hero Section - Fullscreen Height */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-teal) 100%);
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.hero-content {
  z-index: 2;
    padding-top: 225px;
}

.hero-image {
  z-index: 1;
}

/* Decorative Shapes */
.hero-section::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: var(--primary-coral);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: var(--primary-gold);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.1;
  z-index: 0;
}

/* Section Spacing */
.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--light-slate);
}

/* Services Cards */
.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-coral);
}

/* Features Section */
.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  text-align: center;
  border: none;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  transform: scale(1.05);
  border: 3px solid var(--primary-coral);
}

.price-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary-coral);
  color: white;
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: bold;
  transform: rotate(45deg);
}

/* Team Member Cards */
.team-member {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 5px solid var(--primary-gold);
}

/* Testimonials - Static Cards Only */
.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: none;
  margin-bottom: 2rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--primary-slate);
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-purple);
}

/* FAQ - Static Cards Only */
.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border: none;
}

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

.faq-answer {
  color: var(--primary-slate);
  margin: 0;
}

/* Gallery */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
}

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

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

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--light-purple);
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 0.2rem rgba(66, 194, 171, 0.25);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-teal);
  border-color: var(--primary-teal);
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-teal);
  border-color: var(--dark-teal);
  transform: translateY(-2px);
}

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

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

/* Footer - High Contrast Colors Only */
.footer {
  background-color: var(--primary-slate);
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer a {
  color: var(--light-teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-teal);
}

.footer-bottom {
  border-top: 1px solid var(--dark-slate);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Process/Timeline Steps */
.process-step {
  position: relative;
  padding: 2rem;
  text-align: center;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--primary-slate);
  margin: 0 auto 1rem;
}

/* Case Study Cards */
.case-study-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
}

/* Career/Job Cards */
.career-card {
  background: var(--light-purple);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: none;
}

.career-role {
  color: var(--primary-purple);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Core Info Items */
.coreinfo-item {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-slate);
}

.breadcrumb-image {
  max-height: 30px;
  width: auto;
}

/* Animation Classes for Sal.js */
[data-sal] {
  transition-duration: 0.5s;
}

/* Accessibility - 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;
    scroll-behavior: auto !important;
  }
  
  [data-sal] {
    transition: none !important;
  }
}

/* Utility Classes */
.text-primary-purple { color: var(--primary-purple); }
.text-primary-teal { color: var(--primary-teal); }
.text-primary-coral { color: var(--primary-coral); }
.text-primary-gold { color: var(--primary-gold); }
.text-primary-slate { color: var(--primary-slate); }

.bg-primary-purple { background-color: var(--primary-purple); }
.bg-primary-teal { background-color: var(--primary-teal); }
.bg-primary-coral { background-color: var(--primary-coral); }
.bg-primary-gold { background-color: var(--primary-gold); }
.bg-light-slate { background-color: var(--light-slate); } 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

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

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

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

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
