/* Indie Board Games Subscription Box - Main Styles */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  --primary-1: #6f64ff;     /* Bright Periwinkle */
  --primary-2: #b28eed;     /* Light Purple */
  --primary-3: #ffb2a4;     /* Peach */
  --primary-4: #ffb03f;     /* Golden Yellow */
  --primary-5: #4fa18b;     /* Mint Green */
  
  /* Light/Dark Shades */
  --light-1: #F8F9FF;
  --light-2: #F0F2FF;
  --light-3: #f1f4ff;
  --dark-1: #363e4f;
  --dark-2: #0b0d13;
  --dark-3: #050708;
  
  /* Accent Colors */
  --accent-light: #FFF7ED;
  --accent-dark: #2e3a48;
}

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

.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--primary-1);
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-2);
}

h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--dark-2);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--light-1) 0%, var(--light-2) 100%);
  min-height: 100vh;
  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-3);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

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

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

.bg-primary-light {
  background-color: var(--primary-2);
  color: white;
}

/* Cards */
.card-custom {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

/* Services Cards */
.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

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

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

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

/* Review Cards */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-left: 4px solid var(--primary-1);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

/* Form Styling */
.form-control {
  border-radius: 8px;
  border: 2px solid var(--light-3);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.2rem rgba(108, 119, 255, 0.25);
}

/* Footer */
.footer {
  background-color: var(--dark-2);
  color: white;
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--primary-4);
  text-decoration: none;
}

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

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-1);
}

.text-secondary-custom {
  color: var(--primary-2);
}

.border-radius-lg {
  border-radius: 16px;
}

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

/* Gallery Section */
.gallery-item {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.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 Cards */
.price-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

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

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

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

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


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

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

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

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

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