/* AI-Assisted Storyboard Generator Template - Main Styles */
/* Bootstrap 5 compliant - NO overrides or custom grids */

/* CSS Variables - 5 Primary Colors + Shades */
:root {
  /* Primary pastel high-contrast colors */
  --primary-purple: #8B5FBF;
  --primary-blue: #4A90E2;
  --primary-mint: #7FDBCA;
  --primary-coral: #FF8C82;
  --primary-sunshine: #FFC947;
  
  /* Light shades */
  --light-purple: #B088D6;
  --light-blue: #7BAEF0;
  --light-mint: #A5E5D8;
  --light-coral: #FFA9A2;
  --light-sunshine: #FFD76B;
  
  /* Dark shades */
  --dark-purple: #6B4A8F;
  --dark-blue: #3471B8;
  --dark-mint: #5FC2A8;
  --dark-coral: #E6675D;
  --dark-sunshine: #E6A920;
  
  /* System colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #6C757D;
  --dark-gray: #343A40;
  --black: #000000;
}

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

/* Conservative heading sizes */
h1 { font-size: 2.2rem; font-weight: 700; color: var(--primary-purple); }
h2 { font-size: 1.8rem; font-weight: 600; color: var(--primary-blue); }
h3 { font-size: 1.5rem; font-weight: 600; color: var(--primary-mint); }
h4 { font-size: 1.3rem; font-weight: 500; color: var(--primary-coral); }
h5 { font-size: 1.1rem; font-weight: 500; color: var(--primary-sunshine); }
h6 { font-size: 1rem; font-weight: 500; color: var(--gray); }

/* Conservative navbar-brand size */
.navbar-brand {
  font-size: 1.4rem !important;
  font-weight: 600;
  color: var(--primary-purple);
}

/* Paragraph conservative sizing */
p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Hero Section - Fullscreen height */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-blue) 100%);
  display: flex;
  align-items: center;
  position: relative;
}

/* Decorative shapes/blobs */
.hero-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: var(--primary-mint);
  border-radius: 50% 30% 70% 40%;
  opacity: 0.3;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: var(--primary-coral);
  border-radius: 60% 40% 30% 70%;
  opacity: 0.3;
  z-index: 1;
}

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

/* Service Cards */
.service-card {
  background: var(--white);
  border: 2px solid var(--light-blue);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 95, 191, 0.15);
}

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

/* Team Cards */
.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

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

/* Features Grid */
.feature-item {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 2rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  background: var(--white);
  border: 2px solid var(--light-mint);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.price-card.featured {
  border-color: var(--primary-purple);
  transform: scale(1.05);
}

/* Reviews/Testimonials - Static Cards */
.review-card {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-coral);
  margin-bottom: 2rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-purple);
  margin-top: 1rem;
}

/* FAQ - Static Cards */
.faq-card {
  background: var(--white);
  border: 1px solid var(--light-blue);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

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

.faq-answer {
  color: var(--gray);
}

/* Contact Form */
.contact-form {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: 12px;
}

.form-control {
  border: 2px solid var(--light-blue);
  border-radius: 8px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(139, 95, 191, 0.25);
}

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

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

/* Footer - High contrast colors only, no gradients */
.footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem 0;
}

.footer h5 {
  color: var(--primary-mint);
}

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

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

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

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-sunshine);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem auto;
}

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

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

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

/* Case Study Cards */
.case-study-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--light-coral);
  margin-bottom: 2rem;
}

/* Timeline Items */
.timeline-item {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-sunshine);
  margin-bottom: 1.5rem;
}

/* Career Cards */
.career-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--light-mint);
  margin-bottom: 2rem;
}

/* Core Info Items */
.coreinfo-item {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Utility Classes */
.text-primary-purple { color: var(--primary-purple); }
.text-primary-blue { color: var(--primary-blue); }
.text-primary-mint { color: var(--primary-mint); }
.text-primary-coral { color: var(--primary-coral); }
.text-primary-sunshine { color: var(--primary-sunshine); }

.bg-light-purple { background-color: var(--light-purple); }
.bg-light-blue { background-color: var(--light-blue); }
.bg-light-mint { background-color: var(--light-mint); }
.bg-light-coral { background-color: var(--light-coral); }
.bg-light-sunshine { background-color: var(--light-sunshine); }

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

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


/* 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;
    }
}
