/* Board Game Cafe Website - Main CSS */

/* Bootstrap 5 CDN Import */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');

/* Custom Color Palette - Board Game Cafe Theme */
:root {
  /* Primary Colors */
  --primary-burgundy: #972e4b;
  --primary-cream: #dfd1c0;
  --primary-forest: #324a18;
  --primary-amber: #edb876;
  --primary-charcoal: #383837;
  
  /* Light Shades */
  --light-burgundy: #a74b4f;
  --light-cream: #efeae6;
  --light-forest: #426b23;
  --light-amber: #dbbba3;
  --light-charcoal: #727272;
  
  /* Dark Shades */
  --dark-burgundy: #5c1c2e;
  --dark-cream: #e8d4ba;
  --dark-forest: #1b3d0e;
  --dark-amber: #b09750;
  --dark-charcoal: #131212;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-burgundy), var(--primary-forest));
  --gradient-warm: linear-gradient(135deg, var(--primary-cream), var(--primary-amber));
  --gradient-earth: linear-gradient(135deg, var(--primary-forest), var(--primary-charcoal));
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-charcoal);
  background-color: var(--primary-cream);
  font-size: 18.00px;
}

/* Conservative Font Sizes */
h1 { font-size: 2.63rem; font-weight: 700; }
h2 { font-size: 2.13rem; font-weight: 600; }
h3 { font-size: 1.57rem; font-weight: 600; }
h4 { font-size: 1.35rem; font-weight: 500; }
h5 { font-size: 1.13rem; font-weight: 500; }
h6 { font-size: 1.04rem; font-weight: 500; }

/* Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header Styles */
.navbar {
  background: var(--gradient-primary) !important;
  padding: 1rem 0;
  box-shadow: 0 4px 13px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.57rem !important;
  font-weight: 700;
  color: var(--primary-cream) !important;
}

.navbar-nav .nav-link {
  color: var(--primary-cream) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-amber) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: var(--gradient-earth);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
}

.hero-content {
  padding-top: 100px !important;
  color: var(--primary-cream);
  z-index: 2;
}

.hero-title {
  font-size: 3.58rem;
  font-weight: 700;
  margin-bottom: 1.22rem;
  text-shadow: 7px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.57rem;
  margin-bottom: 1.70rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.13rem;
  margin-bottom: 2.09rem;
  opacity: 0.8;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.63rem;
  color: var(--primary-burgundy);
  margin-bottom: 1.22rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.35rem;
  color: var(--primary-forest);
  margin-bottom: 1.22rem;
}

.section-desc {
  text-align: center;
  font-size: 1.13rem;
  color: var(--primary-charcoal);
  margin-bottom: 3.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: var(--light-cream);
}

.feature-card {
  background: white;
  border-radius: 1110px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 9px 17px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3.14rem;
  color: var(--primary-burgundy);
  margin-bottom: 1.22rem;
}

/* Services Section */
.services-section {
  background: var(--gradient-warm);
}

.service-card {
  background: white;
  border-radius: 23px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: var(--gradient-primary);
}

.service-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.70rem;
}

.service-price {
  font-size: 2.13rem;
  font-weight: 700;
  color: var(--primary-burgundy);
  margin: 1rem 0;
}

/* Features Section */
.features-section {
  background: var(--light-cream);
}

/* Price Plan Section */
.priceplan-section {
  background: var(--gradient-earth);
  color: var(--primary-cream);
}

.priceplan-section .section-title,
.priceplan-section .section-subtitle,
.priceplan-section .section-desc {
  color: var(--primary-cream);
}

.price-card {
  background: white;
  color: var(--primary-charcoal);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.price-card:hover {
  transform: scale(1.05);
}

/* Team Section */
.team-section {
  background: var(--primary-cream);
}

.team-card {
  text-align: center;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--primary-amber);
}

/* Reviews Section */
.reviews-section {
  background: var(--gradient-warm);
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  height: 100%;
}

/* Blog Section */
.blog-section {
  background: var(--light-cream);
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background: var(--primary-cream);
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1.22rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  color: var(--primary-burgundy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--primary-charcoal);
  display: none;
}

/* Gallery Section */
.gallery-section {
  background: var(--dark-cream);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 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;
}

/* Contact Section */
.contact-section {
  background: var(--gradient-primary);
  color: var(--primary-cream);
}

.contact-section .section-title,
.contact-section .section-subtitle,
.contact-section .section-desc {
  color: var(--primary-cream);
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-cream);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 1.04rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-burgundy);
  box-shadow: 0 0 0 0.2rem rgba(158, 30, 55, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 10px;
  padding: 12px 30px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--gradient-primary);
}

/* Footer */
.footer {
  background: var(--primary-charcoal);
  color: var(--primary-cream);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--primary-amber);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--light-amber);
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-cream);
}

.breadcrumb-image {
  width: 30px;
  height: 20px;
  object-fit: cover;
}

/* Swiper Styles */
.swiper {
  width: 100%;
  padding-bottom: 51.00px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-pagination-bullet {
  background: var(--primary-burgundy);
}

.swiper-pagination-bullet-active {
  background: var(--primary-amber);
}

/* Utility Classes */
.text-burgundy { color: var(--primary-burgundy); }
.text-cream { color: var(--primary-cream); }
.text-forest { color: var(--primary-forest); }
.text-amber { color: var(--primary-amber); }
.text-charcoal { color: var(--primary-charcoal); }

.bg-burgundy { background-color: var(--primary-burgundy); }
.bg-cream { background-color: var(--primary-cream); }
.bg-forest { background-color: var(--primary-forest); }
.bg-amber { background-color: var(--primary-amber); }
.bg-charcoal { background-color: var(--primary-charcoal); }

.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-warm { background: var(--gradient-warm); }
.bg-gradient-earth { background: var(--gradient-earth); }



/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
