/* Solar Food Trucks - Main CSS */
/* Bootstrap 5 Variables and Custom Properties */
:root {
  /* Primary Color Palette - 5 colors with shades */
  --primary-green: #4ade80;
  --primary-yellow: #fbbf24;
  --primary-orange: #fb923c;
  --primary-blue: #60a5fa;
  --primary-teal: #2dd4bf;
  
  /* Light shades */
  --light-green: #dcfce7;
  --light-yellow: #fef3c7;
  --light-orange: #fed7aa;
  --light-blue: #dbeafe;
  --light-teal: #ccfbf1;
  
  /* Dark shades */
  --dark-green: #166534;
  --dark-yellow: #92400e;
  --dark-orange: #c2410c;
  --dark-blue: #1e40af;
  --dark-teal: #0f766e;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --font-size-large: 1.125rem;
  --line-height-base: 1.5;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --card-padding: 2rem;
}

/* Typography - Conservative sizes */
h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 1.125rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

.navbar-brand { font-size: 1.25rem; font-weight: 600; }

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--primary-teal);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(-15deg);
}

/* Section Styling */
section {
  padding: var(--section-padding);
}

/* About Section */
#about {
  background-color: #f8fafc;
}

.feature-card {
  padding: var(--card-padding);
  border-radius: 1rem;
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Services Section */
#services {
  background: white;
}

.service-card {
  padding: var(--card-padding);
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--light-yellow) 0%, var(--light-orange) 100%);
  height: 100%;
  text-align: center;
  border: 1px solid var(--primary-orange);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-orange);
}

/* Features Section */
#features {
  background: var(--light-teal);
}

.features-item {
  padding: 1.5rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Price Plan Section */
#priceplan {
  background: white;
}

.price-card {
  padding: var(--card-padding);
  border-radius: 1rem;
  background: white;
  border: 2px solid var(--light-blue);
  text-align: center;
  height: 100%;
}

.price-card.featured {
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.plan-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* Team Section */
#team {
  background: var(--light-green);
}

.team-card {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-green);
}

/* Reviews Section */
#reviews {
  background: white;
}

.review-card {
  padding: var(--card-padding);
  background: var(--light-blue);
  border-radius: 1rem;
  height: 100%;
  border-left: 4px solid var(--primary-blue);
}

/* Case Study Section */
#casestudy {
  background: var(--light-yellow);
}

.case-card {
  padding: var(--card-padding);
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Process Section */
#process {
  background: white;
}

.process-step {
  padding: 1.5rem;
  background: var(--light-orange);
  border-radius: 1rem;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

.process-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--primary-orange);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Timeline Section */
#timeline {
  background: var(--light-teal);
}

.timeline-item {
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-teal);
}

/* Career Section */
#career {
  background: white;
}

.career-card {
  padding: var(--card-padding);
  background: var(--light-green);
  border-radius: 1rem;
  height: 100%;
}

/* Core Info Section */
#coreinfo {
  background: var(--light-blue);
}

.info-card {
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
#contacts {
  background: white;
}

.contact-form {
  background: var(--light-green);
  padding: var(--card-padding);
  border-radius: 1rem;
}

.contact-info {
  padding: var(--card-padding);
}

.contact-item {
  padding: 1rem;
  background: white;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-green);
}

/* Blog Section */
#blog {
  background: var(--light-yellow);
}

.blog-card {
  padding: var(--card-padding);
  background: white;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
#faq {
  background: white;
}

.faq-card {
  padding: 1.5rem;
  background: var(--light-teal);
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--dark-teal);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #374151;
}

/* Gallery Section */
#gallery {
  background: var(--light-orange);
}

.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
#footer {
  background: var(--dark-green);
  color: white;
}

#footer a {
  color: var(--light-green);
  text-decoration: none;
}

#footer a:hover {
  color: white;
}

/* Utility Classes */
.text-primary-green { color: var(--primary-green); }
.text-primary-yellow { color: var(--primary-yellow); }
.text-primary-orange { color: var(--primary-orange); }
.text-primary-blue { color: var(--primary-blue); }
.text-primary-teal { color: var(--primary-teal); }

.bg-primary-green { background-color: var(--primary-green); }
.bg-primary-yellow { background-color: var(--primary-yellow); }
.bg-primary-orange { background-color: var(--primary-orange); }
.bg-primary-blue { background-color: var(--primary-blue); }
.bg-primary-teal { background-color: var(--primary-teal); }

/* Form Styling */
.form-control {
  border-radius: 0.5rem;
  border: 2px solid var(--light-green);
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(74, 222, 128, 0.25);
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
}

/* Icon Styling */
.fa {
  margin-right: 0.5rem;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
} 

body {
    overflow-x: hidden;
}


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
