/* AI Product Description Generator - Main Styles */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-lavender: #E6E6FA;
  --primary-mint: #F0FFF0;
  --primary-peach: #FFEEE6;
  --primary-sky: #E0F6FF;
  --primary-rose: #FFE4E1;
  
  /* Light Shades */
  --light-lavender: #F5F5FF;
  --light-mint: #F8FFF8;
  --light-peach: #FFF8F5;
  --light-sky: #F0FBFF;
  --light-rose: #FFF0EF;
  
  /* Dark Shades */
  --dark-lavender: #D1D1E9;
  --dark-mint: #E1FFE1;
  --dark-peach: #FFE0D1;
  --dark-sky: #CCF0FF;
  --dark-rose: #FFD1CC;
  
  /* Conservative Typography */
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --font-size-large: 1.125rem;
  --line-height-base: 1.6;
}

/* Global Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: var(--line-height-base);
  color: #333;
  background-color: #fff;
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-lavender) 0%, var(--light-sky) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 50%;
  height: 200%;
  background: var(--primary-peach);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 40%;
  height: 150%;
  background: var(--primary-mint);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}

/* Section Spacing */
section {
  padding: 4rem 0;
}

/* About Section */
#about {
  background-color: var(--light-mint);
}

/* Services Section */
#services {
  background-color: var(--light-peach);
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-lavender);
}

/* Features Section */
#features {
  background-color: var(--light-sky);
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-lavender);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--dark-lavender);
}

/* Price Plan Section */
#priceplan {
  background-color: var(--light-rose);
}

.price-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  position: relative;
  height: 100%;
}

.price-card.featured {
  border: 3px solid var(--primary-lavender);
  transform: scale(1.05);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-lavender);
  margin: 1rem 0;
}

/* Team Section */
#team {
  background-color: var(--light-lavender);
}

.team-member {
  text-align: center;
  padding: 1rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-mint);
}

/* Reviews Section */
#reviews {
  background-color: var(--light-mint);
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}

.review-stars {
  color: #FFD700;
  margin-bottom: 1rem;
}

/* Case Study Section */
#casestudy {
  background-color: var(--light-peach);
}

.case-study-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  height: 100%;
}

/* Process Section */
#process {
  background-color: var(--light-sky);
}

.process-step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-lavender);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-lavender);
}

/* Timeline Section */
#timeline {
  background-color: var(--light-rose);
}

.timeline-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--primary-lavender);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Career Section */
#career {
  background-color: var(--light-lavender);
}

.career-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  height: 100%;
}

/* Core Info Section */
#coreinfo {
  background-color: var(--light-mint);
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  height: 100%;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-sky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
  color: var(--dark-sky);
}

/* Contact Section */
#contacts {
  background-color: var(--light-peach);
}

.contact-form {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

/* Blog Section */
#blog {
  background-color: var(--light-sky);
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card-body {
  padding: 1.5rem;
}

/* FAQ Section */
#faq {
  background-color: var(--light-rose);
}

.faq-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-question {
  font-weight: 600;
  color: var(--dark-lavender);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #666;
  margin: 0;
}

/* Gallery Section */
#gallery {
  background-color: var(--light-lavender);
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
#footer {
  background-color: #2c3e50;
  color: white;
  padding: 3rem 0 1rem;
}

#footer h5 {
  color: var(--primary-mint);
  margin-bottom: 1rem;
}

#footer a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--primary-mint);
}

/* Utility Classes */
.text-primary-custom {
  color: var(--dark-lavender);
}

.bg-primary-custom {
  background-color: var(--primary-lavender);
}

.btn-primary-custom {
  background-color: var(--primary-lavender);
  border-color: var(--dark-lavender);
  color: var(--dark-lavender);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: var(--dark-lavender);
  border-color: var(--dark-lavender);
  color: white;
  transform: translateY(-2px);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
} 


/* 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;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    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;
    }
}
