/* === INDIE BOARD GAMES SUBSCRIPTION BOX - MAIN STYLES === */

/* Color Variables - Pastel High-Contrast Theme */
:root {
  --primary-purple: #7c71bf;
  --primary-coral: #ff7c75;
  --primary-mint: #73c879;
  --primary-amber: #ffc95a;
  --primary-blue: #60c1eb;
  
  /* Light Shades */
  --light-purple: #b5add5;
  --light-coral: #f7d3d9;
  --light-mint: #a5d0a3;
  --light-amber: #fffcf0;
  --light-blue: #fdfeff;
  
  /* Dark Shades */
  --dark-purple: #7959a5;
  --dark-coral: #ca243d;
  --dark-mint: #26782c;
  --dark-amber: #ff9511;
  --dark-blue: #0653d1;
  
  /* Neutral Colors */
  --text-dark: #2a404f;
  --text-light: #728889;
  --bg-light: #FAFAFA;
  --white: #FFFFFF;
}

/* Media Query for 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;
  }
}

/* Typography - Conservative Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
}

.navbar-brand {
  font-size: 1.33rem;
  font-weight: 600;
  color: var(--primary-purple);
}

h1 {
  font-size: 2.56rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.00rem;
}

h3 {
  font-size: 1.58rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.57rem;
}

p, .description {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Header Styles */
.navbar {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-purple) 100%);
  box-shadow: 0 7px 5px rgba(0,0,0,0.1);
  padding: 0.75rem 0;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-purple);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-mint) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 100px;
}

.hero-image {
  position: relative;
  z-index: 2;
}

/* Section Spacing */
.section {
  padding: 4rem 0;
}

.section:nth-child(even) {
  background-color: var(--bg-light);
}

/* Services Grid */
.services-grid {
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 6px 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(-5px);
  box-shadow: 0 13px 15px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.63rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-top: 1rem;
}

/* Features Section */
.features-grid {
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  border-left: 5px solid var(--primary-coral);
}

/* Team Section */
.team-grid {
  gap: 2rem;
}

.team-member {
  text-align: center;
  background: var(--white);
  border-radius: 13px;
  padding: 1.5rem;
  box-shadow: 0 6px 5px rgba(0, 0, 0, 0.1);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--primary-mint);
}

/* Reviews Section */
.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 7px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.58rem;
  border-left: 4px solid var(--primary-amber);
}

/* FAQ Section */
.faq-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-blue);
}

.faq-question {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.66rem;
}

.faq-answer {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--light-purple);
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(140, 106, 212, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-coral) 100%);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, var(--dark-purple) 0%, var(--dark-coral) 100%);
}

/* Gallery Section */
.gallery-grid {
  gap: 1rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--dark-purple) 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-amber);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-purple);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-coral);
}

/* Process/Timeline Items */
.process-item, .timeline-item, .career-item, .coreinfo-item, .casestudy-item {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.57rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-mint);
}

/* Blog Section */
.blog-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-3px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* Price Plan Section */
.priceplan-item {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--light-purple);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.priceplan-item:hover {
  border-color: var(--primary-purple);
  transform: translateY(-5px);
}

.priceplan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin: 1rem 0;
}

/* Breadcrumb */
.breadcrumb-section {
  background: var(--light-purple);
  padding: 1rem 0;
}

.breadcrumb-image {
  max-height: 30px;
  width: auto;
}

/* Utility Classes */
.text-primary-purple { color: var(--primary-purple); }
.text-primary-coral { color: var(--primary-coral); }
.text-primary-mint { color: var(--primary-mint); }
.text-primary-amber { color: var(--primary-amber); }
.text-primary-blue { color: var(--primary-blue); }

.bg-light-purple { background-color: var(--light-purple); }
.bg-light-coral { background-color: var(--light-coral); }
.bg-light-mint { background-color: var(--light-mint); }
.bg-light-amber { background-color: var(--light-amber); }
.bg-light-blue { background-color: var(--light-blue); } 


/* 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);
}

.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;
    }
}
