/* Main CSS for Zero-waste Refill Station Kiosks Template */

/* Color Palette - Pastel High-contrast Colors */
:root {
  /* Primary Colors */
  --primary-green: #9bc77e;
  --primary-blue: #82c1ce;
  --primary-mint: #adfce1;
  --primary-sage: #ced9d2;
  --primary-cream: #e0e0c5;
  
  /* Light Shades */
  --light-green: #daf5d5;
  --light-blue: #9bc5d6;
  --light-mint: #c5f7f2;
  --light-sage: #e6ece8;
  --light-cream: #fbfbf7;
  
  /* Dark Shades */
  --dark-green: #82a674;
  --dark-blue: #69c7e4;
  --dark-mint: #9effdd;
  --dark-sage: #98baab;
  --dark-cream: #fdfcf0;
  
  /* Text Colors */
  --text-dark: #2e3234;
  --text-light: #78888b;
  --text-white: #ffffff;
  
  /* Additional Colors */
  --accent-orange: #f6a297;
  --accent-yellow: #ebb670;
  --border-light: #e9e9e9;
  --shadow-light: rgba(0, 0, 0, 0.1);
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--light-cream);
}

/* Conservative Font Sizes */
.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--dark-green);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

/* Header Styles */
.navbar {
  background-color: var(--text-white);
  box-shadow: 0 2px 4px var(--shadow-light);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: var(--primary-cream);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(15deg);
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-light);
}

/* About Section */
.about-section {
  background-color: var(--text-white);
}

.feature-card {
  background: var(--text-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-light);
}

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

/* Services Section */
.services-section {
  background-color: var(--light-cream);
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  background-color: var(--text-white);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-mint);
}

.price-card {
  background: var(--text-white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  position: relative;
  box-shadow: 0 5px 15px var(--shadow-light);
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: scale(1.05);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  background-color: var(--text-white);
}

.team-card {
  text-align: center;
  background: var(--light-cream);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

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

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-green);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-sage);
}

.review-card {
  background: var(--text-white);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px var(--shadow-light);
  margin-bottom: 2rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.review-author {
  font-weight: 600;
  color: var(--text-dark);
}

/* Case Studies Section */
.casestudy-section {
  background-color: var(--text-white);
}

.case-card {
  background: var(--light-cream);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

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

/* Process Section */
.process-section {
  background-color: var(--light-blue);
}

.process-step {
  background: var(--text-white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  margin-bottom: 2rem;
  position: relative;
}

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

/* Timeline Section */
.timeline-section {
  background-color: var(--text-white);
}

.timeline-item {
  background: var(--light-mint);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-green);
}

/* Career Section */
.career-section {
  background-color: var(--light-cream);
}

.career-card {
  background: var(--text-white);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px var(--shadow-light);
  transition: transform 0.3s ease;
}

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

/* Core Info Section */
.coreinfo-section {
  background-color: var(--text-white);
}

.info-card {
  background: var(--light-sage);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  text-align: center;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-mint);
}

.contact-form {
  background: var(--text-white);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 10px 30px var(--shadow-light);
}

.form-control {
  border: 2px solid var(--border-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(165, 209, 153, 0.25);
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-2px);
}

.contact-info {
  background: var(--text-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px var(--shadow-light);
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-right: 1rem;
  width: 30px;
}

/* Blog Section */
.blog-section {
  background-color: var(--text-white);
}

.blog-card {
  background: var(--light-cream);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
}

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

.blog-card-body {
  padding: 2rem;
}

.blog-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--dark-green);
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-sage);
}

.faq-card {
  background: var(--text-white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px var(--shadow-light);
}

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

.faq-answer {
  color: var(--text-light);
  margin: 0;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--text-white);
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-light);
  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: var(--text-dark);
  color: var(--text-white);
  padding: 3rem 0 2rem;
}

.footer h5 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--primary-mint);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--light-mint);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #6e6466;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb-section {
  background-color: var(--light-cream);
  padding: 2rem 0;
}

.breadcrumb-image {
  width: 100%;
  max-width: 200px;
  height: auto;
}

/* Utility Classes */
.text-primary {
  color: var(--primary-green) !important;
}

.bg-primary {
  background-color: var(--primary-green) !important;
}

.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}

/* Space Page Specific */
#space {
  min-height: 70vh;
  background-color: var(--light-mint);
  border-radius: 12px;
  margin: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-light);
} 

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


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

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

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

.x-link::after {
    content: '✦';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
