/* ============================================
   VR Museum Tours - Main Stylesheet
   Bootstrap 5 Compatible - No Overrides
   ============================================ */

:root {
  /* Primary Color Palette - 5 Pastel High-Contrast Colors */
  --primary-blue: #417dcb;
  --primary-purple: #a664b0; 
  --primary-teal: #19aa77;
  --primary-coral: #cf5745;
  --primary-amber: #f6ad0d;
  
  /* Light/Dark Shades */
  --light-blue: #e3f4ff;
  --light-purple: #F4ECF7;
  --light-teal: #dcfbf5;
  --light-coral: #ffd5d4;
  --light-amber: #fffce5;
  
  --dark-blue: #27479f;
  --dark-purple: #853a96;
  --dark-teal: #1b8f81;
  --dark-coral: #c55c3b;
  --dark-amber: #d16a10;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.5rem;
  --font-size-navbar: 1rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --section-padding-small: 3rem 0;
}

/* ============================================
   Base Typography - Conservative Sizes
   ============================================ */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #263347;
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

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

.navbar-brand {
  font-size: var(--font-size-navbar) !important;
  font-weight: 600;
}

/* ============================================
   Hero Section - Fullscreen Height
   ============================================ */

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 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(--primary-teal);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(15deg);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 30%;
  height: 120%;
  background: var(--primary-coral);
  border-radius: 50%;
  opacity: 0.08;
  transform: rotate(-25deg);
}

/* ============================================
   Section Styling
   ============================================ */

.section {
  padding: var(--section-padding);
}

.section-small {
  padding: var(--section-padding-small);
}

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

.section-subtitle {
  color: var(--dark-blue);
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-desc {
  text-align: center;
  margin-bottom: 3rem;
  color: #5b5f64;
}

/* ============================================
   About Section
   ============================================ */

.about-section {
  background-color: var(--light-teal);
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

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

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

/* ============================================
   Services Section
   ============================================ */

.services-section {
  background-color: #ffffff;
}

.service-card {
  background: white;
  border: 2px solid var(--light-blue);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 25px rgba(79, 133, 227, 0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-price {
  color: var(--primary-coral);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1rem;
}

/* ============================================
   Features Section
   ============================================ */

.features-section {
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-amber) 100%);
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

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

/* ============================================
   Price Plan Section
   ============================================ */

.priceplan-section {
  background-color: #ffffff;
}

.price-card {
  background: white;
  border: 2px solid var(--light-teal);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-teal);
  transform: translateY(-5px);
}

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

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-teal);
}

/* ============================================
   Team Section
   ============================================ */

.team-section {
  background-color: var(--light-coral);
}

.team-member {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.member-name {
  color: var(--dark-coral);
  margin-bottom: 0.5rem;
}

.member-role {
  color: #6d7075;
  font-style: italic;
}

/* ============================================
   Reviews Section - Static Cards Only
   ============================================ */

.reviews-section {
  background-color: #ffffff;
}

.review-card {
  background: white;
  border-left: 4px solid var(--primary-blue);
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: 100%;
  border-radius: 8px;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #2a3f53;
}

.review-author {
  color: var(--primary-blue);
  font-weight: 600;
}

/* ============================================
   Case Study Section
   ============================================ */

.casestudy-section {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-teal) 100%);
}

.case-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

/* ============================================
   Process Section
   ============================================ */

.process-section {
  background-color: #ffffff;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

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

.process-step::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--light-purple);
  display: none;
}

@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    display: block;
  }
}

/* ============================================
   Timeline Section
   ============================================ */

.timeline-section {
  background-color: var(--light-amber);
}

.timeline-item {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-amber);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

/* ============================================
   Career Section
   ============================================ */

.career-section {
  background-color: #ffffff;
}

.career-card {
  background: white;
  border: 2px solid var(--light-purple);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.career-card:hover {
  border-color: var(--primary-purple);
  box-shadow: 0 6px 20px rgba(177, 101, 192, 0.15);
}

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

.career-role {
  background: var(--light-purple);
  color: var(--dark-purple);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 1rem;
}

/* ============================================
   Core Info Section
   ============================================ */

.coreinfo-section {
  background: linear-gradient(135deg, var(--light-coral) 0%, var(--light-amber) 100%);
}

.coreinfo-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

/* ============================================
   Contact Form
   ============================================ */

.contact-section {
  background-color: #ffffff;
}

.contact-form {
  background: var(--light-blue);
  border-radius: 15px;
  padding: 3rem;
}

.contact-info {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: white;
}

/* ============================================
   Blog Section
   ============================================ */

.blog-section {
  background-color: var(--light-purple);
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.blog-content {
  padding: 2rem;
}

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

.blog-link {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--dark-purple);
}

/* ============================================
   FAQ Section - Static Cards Only
   ============================================ */

.faq-section {
  background-color: #ffffff;
}

.faq-card {
  background: white;
  border: 1px solid var(--light-blue);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.faq-answer {
  color: #677177;
  line-height: 1.6;
}

/* ============================================
   Gallery Section
   ============================================ */

.gallery-section {
  background-color: var(--light-teal);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background-color: #3c5565;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid #374858;
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* ============================================
   Buttons
   ============================================ */

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

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

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

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

/* ============================================
   Breadcrumbs - Image Only
   ============================================ */

.breadcrumb-section {
  padding: 2rem 0;
  background-color: var(--light-blue);
}

.breadcrumb-image {
  width: 200px;
  height: auto;
  border-radius: 8px;
}

/* ============================================
   Reduced Motion Support
   ============================================ */

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

/* ============================================
   Print Styles
   ============================================ */

@media print {
  .hero-section::before,
  .hero-section::after {
    display: none;
  }
  
  .btn {
    border: 1px solid #000;
    background: transparent !important;
    color: #000 !important;
  }
} 

.hero-section h1 {
    padding-top: 200px;
}


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