:root {
  /* Escape Room Color Palette - Pastel High-Contrast */
  --primary-dark: #2c1810;
  --primary-gold: #d4af37;
  --primary-teal: #008080;
  --primary-purple: #6a4c93;
  --primary-orange: #ff8c42;
  
  /* Light/Dark Shades */
  --light-cream: #f8f6f0;
  --light-gold: #f0e68c;
  --light-teal: #40e0d0;
  --light-purple: #dda0dd;
  --light-orange: #ffd700;
  
  --dark-brown: #1a0f08;
  --dark-teal: #004d4d;
  --dark-purple: #4a2c73;
  --dark-orange: #cc5722;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --line-height-base: 1.6;
}

/* Prefers 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;
  }
}

/* Base Typography - Conservative Sizes */
body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--primary-dark);
  background-color: var(--light-cream);
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

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

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

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

/* Navbar Conservative Branding */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-gold);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--light-teal) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: var(--light-purple);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: var(--primary-orange);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

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

/* Services Section */
.services-section {
  background-color: var(--light-cream);
  padding: 4rem 0;
}

.service-card {
  background: white;
  border: 2px solid var(--light-teal);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 128, 128, 0.1);
}

.service-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
}

/* About Features */
.feature-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(44, 24, 16, 0.05);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

/* Team Section */
.team-member {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(44, 24, 16, 0.08);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-gold);
  margin-bottom: 1rem;
}

/* Reviews Section - Static Cards */
.review-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-purple);
  height: 100%;
  box-shadow: 0 3px 12px rgba(106, 76, 147, 0.1);
}

.review-author {
  font-weight: 600;
  color: var(--primary-purple);
  margin-top: 1rem;
}

/* FAQ Section - Static Cards */
.faq-card {
  background: white;
  border: 1px solid var(--light-teal);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

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

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

/* Contact Form */
.contact-section {
  background: var(--light-cream);
  padding: 4rem 0;
}

.form-control {
  border: 2px solid var(--light-teal);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: var(--font-size-base);
}

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

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

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

/* Footer - High Contrast Colors Only */
.footer {
  background-color: #1a0800; /* Darker background for better contrast */
  color: #ffffff; /* Brighter text for better readability */
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: #f0c050; /* Brighter gold for better visibility */
  margin-bottom: 1rem;
  font-weight: 600; /* Make headings more visible */
}

.footer p {
  color: #ffffff; /* Ensure paragraph text is white */
  line-height: 1.8; /* Increased line height for readability */
}

.footer a {
  color: #ffffff; /* Brighter link color */
  text-decoration: underline; /* Add underline to links for better visibility */
  font-weight: 500; /* Make links more visible */
}

.footer a:hover {
  color: #f0c050; /* Brighter gold on hover */
  text-decoration: none; /* Remove underline on hover */
}

/* Footer Disclaimer */
.footer .disclaimer {
  background-color: #2a1000; /* Slightly lighter than footer background */
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer .disclaimer p {
  margin-bottom: 0.75rem;
}

/* Gallery */
.gallery-section {
  padding: 4rem 0;
  background: white;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(44, 24, 16, 0.1);
  transition: transform 0.3s ease;
}

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

/* Utility Classes */
.section-padding {
  padding: 4rem 0;
}

.text-primary-gold {
  color: var(--primary-gold);
}

.text-primary-teal {
  color: var(--primary-teal);
}

.bg-primary-teal {
  background-color: var(--primary-teal);
}

.bg-light-cream {
  background-color: var(--light-cream);
}

/* Breadcrumb Styling */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
} 


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

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

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

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

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