/* International Snacks Subscription Box Template */
/* Bootstrap 5 Required CSS Variables and Custom Styling */

:root {
  /* Primary Color Palette - Pastel high-contrast colors */
  --primary-orange: #FF8C42;
  --primary-green: #4CAF50;
  --primary-purple: #9C27B0;
  --primary-blue: #2196F3;
  --primary-red: #F44336;
  
  /* Light shades */
  --light-orange: #FFE0CC;
  --light-green: #E8F5E8;
  --light-purple: #F3E5F5;
  --light-blue: #E3F2FD;
  --light-red: #FFEBEE;
  
  /* Dark shades */
  --dark-orange: #E65100;
  --dark-green: #2E7D32;
  --dark-purple: #6A1B9A;
  --dark-blue: #1565C0;
  --dark-red: #C62828;
  
  /* Text colors */
  --text-dark: #2C3E50;
  --text-light: #6C757D;
  --text-white: #FFFFFF;
  
  /* Background colors */
  --bg-white: #FFFFFF;
  --bg-light: #F8F9FA;
  --bg-dark: #212529;
  
  /* Conservative font sizes */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-h5: 1.125rem;
  --font-size-h4: 1.25rem;
  --font-size-h3: 1.5rem;
  --font-size-h2: 1.75rem;
  --font-size-h1: 2rem;
}

/* Respect 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 styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: var(--font-size-base);
}

/* Disable horizontal scroll on desktop */
@media (min-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
}

/* Conservative heading sizes */
h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

/* Conservative navbar brand size */
.navbar-brand {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--primary-orange);
}

/* Hero section - fullscreen height */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-orange) 0%, var(--light-green) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23FF8C42" stroke-width="0.5" opacity="0.1"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Section spacing */
.section-padding {
  padding: 4rem 0;
}

/* Service cards */
.service-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.service-card .price {
  font-size: var(--font-size-xl);
  color: var(--primary-orange);
  font-weight: 700;
}

/* Feature cards */
.feature-card {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--light-purple);
}

/* Team member cards */
.team-card {
  background: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Review cards - static Bootstrap cards only */
.review-card {
  background: var(--light-blue);
  border: none;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
}

/* Price plan cards */
.price-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
  height: 100%;
}

.price-card.featured {
  border: 3px solid var(--primary-orange);
  transform: scale(1.05);
}

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

/* FAQ cards - simple static cards */
.faq-card {
  background: var(--bg-white);
  border: 1px solid var(--light-purple);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

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

/* Contact form styling */
.contact-form {
  background: var(--light-green);
  border-radius: 15px;
  padding: 2rem;
}

.form-control {
  border-radius: 10px;
  border: 1px solid var(--light-purple);
  padding: 0.75rem 1rem;
}

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

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

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

/* Footer - high contrast colors only */
.footer {
  background-color: var(--text-dark);
  color: var(--text-white);
  padding: 3rem 0 1rem;
}

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

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

/* Gallery - images only */
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1rem;
}

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

/* Blog cards */
.blog-card {
  background: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Case study and process cards */
.case-card, .process-card {
  background: var(--light-purple);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

/* Timeline cards */
.timeline-card {
  background: var(--light-blue);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-card::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--primary-blue);
  border-radius: 50%;
}

/* Career cards */
.career-card {
  background: var(--light-red);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1rem;
}

/* Core info cards */
.coreinfo-card {
  background: var(--light-green);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

/* Utility classes */
.text-primary-orange { color: var(--primary-orange); }
.text-primary-green { color: var(--primary-green); }
.text-primary-purple { color: var(--primary-purple); }
.text-primary-blue { color: var(--primary-blue); }
.text-primary-red { color: var(--primary-red); }

.bg-light-orange { background-color: var(--light-orange); }
.bg-light-green { background-color: var(--light-green); }
.bg-light-purple { background-color: var(--light-purple); }
.bg-light-blue { background-color: var(--light-blue); }
.bg-light-red { background-color: var(--light-red); }

/* Breadcrumb styles for additional pages */
.breadcrumb-img {
  max-height: 40px;
  width: auto;
}

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


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

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

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

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