/* ===================================
   StoryBoard AI Template - Main CSS
   ===================================
   
   Framework: Bootstrap 5
   Design: Modern 2025 Style
   Colors: High contrast pastel palette
   Features: Responsive, Accessible, Animated
   
   =================================== */

/* ===== ROOT VARIABLES ===== */
:root {
  /* Primary Color Palette - 5 colors + shades */
  --primary-coral: #ff5e6b;
  --primary-coral-light: #ffb8ac;
  --primary-coral-dark: #f64a41;
  
  --primary-mint: #56d9df;
  --primary-mint-light: #a4f3e5;
  --primary-mint-dark: #26a38c;
  
  --primary-lavender: #bcfad9;
  --primary-lavender-light: #b9e2d2;
  --primary-lavender-dark: #72d0a4;
  
  --primary-peach: #ecc043;
  --primary-peach-light: #fff86f;
  --primary-peach-dark: #ded845;
  
  --primary-sky: #84d989;
  --primary-sky-light: #aeecc0;
  --primary-sky-dark: #46b65c;
  
  /* Neutral Colors */
  --neutral-white: #FFFFFF;
  --neutral-light: #F8F9FA;
  --neutral-gray: #7b838c;
  --neutral-dark: #242527;
  --neutral-black: #131415;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-mint) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-lavender) 0%, var(--primary-sky) 100%);
  --gradient-accent: linear-gradient(135deg, var(--primary-peach) 0%, var(--primary-coral) 100%);
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-xxl: 1.5rem;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  
  /* Borders */
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
}

/* ===== GLOBAL STYLES ===== */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: var(--neutral-white);
  overflow-x: hidden;
}

/* 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;
  }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--neutral-dark);
}

h1 { font-size: 2.62rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.85rem; }
h4 { font-size: 1.59rem; }
h5 { font-size: 1.36rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--spacing-md);
  color: var(--neutral-gray);
}

a {
  color: var(--primary-coral);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-coral-dark);
  text-decoration: none;
}

/* ===== HEADER & NAVIGATION ===== */
.navbar {
  background: var(--gradient-primary);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  padding: var(--spacing-sm) 0;
}

.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--neutral-white);
}

.navbar-brand:hover {
  color: var(--neutral-white);
}

.navbar-nav .nav-link {
  color: var(--neutral-white);
  font-weight: 500;
  margin: 0 var(--spacing-sm);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-peach);
  transform: translateY(-2px);
}

.navbar-toggler {
  border: none;
  color: var(--neutral-white);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: var(--gradient-secondary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../NET_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: -1;
}

.hero-image {
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: translateY(-10px);
}

#hero-title-1 {
  font-size: 3.60rem;
  font-weight: 800;
  color: var(--neutral-white);
  margin-bottom: var(--spacing-lg);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

#hero-subtitle-1 {
  font-size: 1.57rem;
  font-weight: 600;
  color: var(--neutral-white);
  margin-bottom: var(--spacing-lg);
  opacity: 0.9;
}

#hero-desc-1 {
  font-size: var(--font-size-lg);
  color: var(--neutral-white);
  margin-bottom: var(--spacing-xl);
  opacity: 0.8;
}

/* ===== SECTIONS ===== */
.section,
.page-section {
  padding: var(--spacing-xxl) 0;
}

.about-section {
  background: var(--neutral-light);
}

.services-section {
  background: var(--neutral-white);
}

.features-section {
  background: var(--neutral-light);
}

.priceplan-section {
  background: var(--neutral-white);
}

.team-section {
  background: var(--neutral-light);
}

.reviews-section {
  background: var(--neutral-white);
}

.casestudy-section {
  background: var(--neutral-light);
}

.process-section {
  background: var(--neutral-white);
}

.timeline-section {
  background: var(--neutral-light);
}

.career-section {
  background: var(--neutral-white);
}

.coreinfo-section {
  background: var(--neutral-light);
}

.blog-section {
  background: var(--neutral-white);
}

.faq-section {
  background: var(--neutral-light);
}

.gallery-section {
  background: var(--neutral-white);
}

.contact-section {
  background: var(--neutral-light);
}

/* ===== CARDS ===== */
.feature-card,
.service-card,
.price-card,
.team-member,
.review-card,
.case-study-card,
.blog-card,
.career-card,
.info-card,
.element-item {
  background: var(--neutral-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  padding: var(--spacing-xl);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover,
.service-card:hover,
.price-card:hover,
.team-member:hover,
.review-card:hover,
.case-study-card:hover,
.blog-card:hover,
.career-card:hover,
.info-card:hover,
.element-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon,
.info-icon {
  font-size: 2.52rem;
  color: var(--primary-coral);
  margin-bottom: var(--spacing-md);
}

/* ===== SERVICE CARDS ===== */
.service-image,
.case-study-image,
.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-md);
}

.service-price {
  font-size: 1.57rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin-top: var(--spacing-md);
}

/* ===== PRICE CARDS ===== */
.price-card {
  text-align: center;
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--primary-coral);
  transform: scale(1.05);
}

.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-coral);
  color: var(--neutral-white);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--border-radius);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.price {
  font-size: 2.63rem;
  font-weight: 800;
  color: var(--primary-coral);
  margin-bottom: var(--spacing-md);
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--neutral-gray);
}

/* ===== TEAM MEMBERS ===== */
.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: var(--spacing-md);
  border: 4px solid var(--primary-mint);
}

.team-member {
  text-align: center;
}

/* ===== PROCESS SECTION ===== */
.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--neutral-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.63rem;
  font-weight: 700;
  margin: 0 auto var(--spacing-md);
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding: var(--spacing-xl) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-mint);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--spacing-xxl);
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-date {
  background: var(--primary-coral);
  color: var(--neutral-white);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius);
  font-weight: 600;
  margin: 0 var(--spacing-xl);
  min-width: 100px;
  text-align: center;
}

.timeline-content {
  flex: 1;
  background: var(--neutral-white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

/* ===== ACCORDION (FAQ) ===== */
.accordion-item {
  border: none;
  margin-bottom: var(--spacing-sm);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.accordion-button {
  background: var(--neutral-white);
  border: none;
  color: var(--neutral-dark);
  font-weight: 600;
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
}

.accordion-button:focus {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-coral);
}

.accordion-button:not(.collapsed) {
  background: var(--primary-coral);
  color: var(--neutral-white);
}

.accordion-body {
  background: var(--neutral-light);
  padding: var(--spacing-lg);
}

/* ===== GALLERY ===== */
.gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--neutral-white);
  padding: var(--spacing-xxl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.form-control {
  border: 2px solid var(--neutral-light);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-coral);
  box-shadow: 0 0 0 0.2rem rgba(255, 114, 118, 0.25);
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary-coral);
  margin-bottom: var(--spacing-md);
}

/* ===== BUTTONS ===== */
.btn {
  border-radius: var(--border-radius);
  padding: var(--spacing-md) var(--spacing-xl);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--neutral-white);
}

.btn-primary:hover {
  background: var(--gradient-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== BREADCRUMBS ===== */
.breadcrumb-nav {
  background: var(--neutral-light);
  padding: var(--spacing-md) 0;
  margin-top: 60px;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gradient-primary);
  color: var(--neutral-white);
  margin-top: var(--spacing-xxl);
}

.footer h5 {
  color: var(--neutral-white);
  margin-bottom: var(--spacing-lg);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: var(--neutral-white);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.2);
  margin: var(--spacing-xl) 0;
}

/* ===== SPACE PAGE ===== */
.space-container {
  min-height: 100vh;
  background: var(--gradient-secondary);
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== FEATURE ITEMS ===== */
.feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
  background: var(--neutral-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.feature-item .feature-icon {
  flex-shrink: 0;
  font-size: 2rem;
  color: var(--primary-coral);
}

/* ===== UTILITIES ===== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.shadow-custom {
  box-shadow: var(--shadow-lg);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  #hero-title-1 {
    font-size: 2.62rem;
  }
  
  #hero-subtitle-1 {
    font-size: 1.36rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 60px;
  }
  
  .timeline-item:nth-child(odd) {
    flex-direction: column;
  }
  
  .timeline-date {
    margin: 0 0 var(--spacing-md) 0;
  }
  
  .price-card.featured {
    transform: none;
    margin-bottom: var(--spacing-xl);
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .contact-form {
    padding: var(--spacing-xl);
  }
}

@media (max-width: 576px) {
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-md);
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.29rem;
  }
  
  .navbar-brand {
    font-size: var(--font-size-lg);
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.82rem; }
  h3 { font-size: 1.58rem; }
  h4 { font-size: 1.32rem; }
}

/* ===== LOADING STATES ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states for keyboard navigation */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-coral);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-coral: #ce3a25;
    --primary-mint: #02d087;
    --primary-lavender: #7475eb;
    --primary-peach: #efc95e;
    --primary-sky: #00a9b9;
    --neutral-gray: #1c2424;
    --neutral-dark: #000000;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .contact-form {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero-section {
    background: none;
    min-height: auto;
  }
} 

.hero-section h1 {
    padding-top: 225px;
}


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
