/* CSS Variables - 5 Primary Colors + Shades */
:root {
  --primary-orange: #FF8C42;
  --primary-green: #6AB04C;
  --primary-blue: #3742FA;
  --primary-yellow: #FFC312;
  --primary-red: #EE5A24;
  
  /* Light Shades */
  --light-orange: #FFB380;
  --light-green: #95C984;
  --light-blue: #6C7CE0;
  --light-yellow: #FFD66B;
  --light-red: #F5776E;
  
  /* Dark Shades */
  --dark-orange: #E67E22;
  --dark-green: #4CAF50;
  --dark-blue: #2C3E50;
  --dark-yellow: #F39C12;
  --dark-red: #C0392B;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #6C757D;
  --dark-gray: #343A40;
  --black: #000000;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  overflow-x: hidden;
}

/* 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;
  }
}

/* Header Styles */
.navbar {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--white) !important;
  text-decoration: none;
}

.nav-link {
  color: var(--white) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background: linear-gradient(45deg, var(--primary-green), var(--primary-blue));
  color: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* Account for fixed navbar */
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: url('../GUI_images/hero-cooking-kids.webp') no-repeat center;
  background-size: cover;
  opacity: 0.3;
  border-radius: 50%;
  transform: rotate(15deg);
}

#hero-title-1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#hero-subtitle-1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--light-yellow);
}

#hero-desc-1 {
  font-size: 1.1rem;
  max-width: 500px;
}

/* Section Styles */
section {
  padding: 4rem 0;
  scroll-margin-top: 80px; /* Offset for fixed navbar */
}

section:not(.hero-section) {
  padding-top: 6rem; /* Extra padding for non-hero sections */
}

h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--dark-blue);
}

h3 {
  font-size: 1.5rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* About Section */
#about {
  background: linear-gradient(135deg, var(--light-gray), var(--white));
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.feature-card i {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Services Section */
#services {
  background: linear-gradient(45deg, var(--light-orange), var(--light-yellow));
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card .card-body {
  overflow-x: hidden;
  padding: 1.5rem;
}

.service-card h4 {
  color: var(--primary-blue);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.service-card h5 {
  color: var(--primary-red);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Features Section */
#features {
  background: linear-gradient(135deg, var(--white), var(--light-green));
}

.feature-item {
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: linear-gradient(45deg, var(--light-blue), var(--light-green));
  color: var(--white);
  transform: translateY(-5px);
}

.feature-item i {
  color: var(--primary-yellow);
}

/* Team Section */
#team {
  background: linear-gradient(45deg, var(--light-blue), var(--light-green));
}

.team-member {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 4px solid var(--primary-orange);
}

/* Contact Section */
#contacts {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: var(--white);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-form .form-control {
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.25);
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-orange), var(--primary-red));
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(45deg, var(--dark-orange), var(--dark-red));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-gray), var(--black));
  color: var(--white);
}

footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-orange);
}

/* Additional Pages */
.breadcrumb-container {
  background: var(--light-gray);
  margin-top: 70px;
}

.breadcrumb-img {
  height: 20px;
  opacity: 0.7;
}

.element-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.element-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.element-card h4 {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Space Page */
.space-section {
  min-height: calc(100vh - 200px);
  margin-top: 70px;
  background: linear-gradient(45deg, var(--light-orange), var(--light-green));
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: fadeInUp 0.8s ease forwards;
}

/* Price Plan Section */
#priceplan {
  background: linear-gradient(135deg, var(--light-blue), var(--light-yellow));
}

.price-plan-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 3px solid transparent;
}

.price-plan-card.featured {
  border-color: var(--primary-orange);
  transform: scale(1.05);
}

.price-plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.price-plan-card h4 {
  color: var(--primary-blue);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.price-plan-card h5 {
  color: var(--primary-red);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.price-plan-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-plan-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
  color: var(--gray);
}

.price-plan-card ul li:before {
  content: '✓';
  color: var(--primary-green);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Reviews Section */
#reviews {
  background: linear-gradient(45deg, var(--light-green), var(--light-blue));
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.review-card:before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-orange);
  position: absolute;
  top: -10px;
  left: 15px;
  line-height: 1;
}

.review-card p {
  font-style: italic;
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.review-card h5 {
  color: var(--primary-blue);
  font-weight: bold;
  text-align: right;
}

/* Blog Section */
#blog {
  background: linear-gradient(135deg, var(--light-gray), var(--light-blue));
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-card .card-body {
  overflow-x: hidden;
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.blog-date {
  color: var(--gray);
}

.blog-category {
  background: linear-gradient(45deg, var(--primary-orange), var(--primary-yellow));
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-weight: bold;
  font-size: 0.8rem;
}

.blog-card h4 {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-read-more {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  color: var(--dark-orange);
  text-decoration: none;
}

.blog-read-more:after {
  content: '→';
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.blog-read-more:hover:after {
  transform: translateX(5px);
}

/* FAQ Section */
#faq {
  background: linear-gradient(135deg, var(--white), var(--light-orange));
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-question {
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-green));
  color: var(--white);
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}

.faq-question:hover {
  background: linear-gradient(45deg, var(--dark-blue), var(--dark-green));
}

.faq-question h5 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--white);
}

.faq-question i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 1.5rem;
  background: var(--white);
  display: none;
  border-top: 1px solid var(--light-gray);
  color: var(--gray);
  line-height: 1.6;
}

/* Gallery Section */
.gallery {
  background: var(--light-gray);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, var(--primary-orange), var(--primary-red));
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  color: var(--white);
  font-weight: 500;
  z-index: 1100;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  max-width: 350px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.notification.show {
  transform: translateX(0);
}

.notification-success {
  background: linear-gradient(45deg, var(--primary-green), var(--dark-green));
}

.notification-error {
  background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
}

.notification-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  float: right;
  cursor: pointer;
  margin-left: 1rem;
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(45deg, var(--primary-orange), var(--primary-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-custom {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rounded-custom {
  border-radius: 20px;
}

/* Price Plan Section */
#priceplan {
  background: linear-gradient(135deg, var(--light-blue), var(--light-yellow));
}

.price-plan-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 3px solid transparent;
}

.price-plan-card.featured {
  border-color: var(--primary-orange);
  transform: scale(1.05);
}

.price-plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.price-plan-card h4 {
  color: var(--primary-blue);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.price-plan-card h5 {
  color: var(--primary-red);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.price-plan-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-plan-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
  color: var(--gray);
}

.price-plan-card ul li:before {
  content: '✓';
  color: var(--primary-green);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Reviews Section */
.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.review-card:before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-orange);
  position: absolute;
  top: -10px;
  left: 15px;
  line-height: 1;
}

.review-card p {
  font-style: italic;
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.review-card h5 {
  color: var(--primary-blue);
  font-weight: bold;
  text-align: right;
}

/* FAQ Section */
.faq-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-question {
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-green));
  color: var(--white);
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}

.faq-question:hover {
  background: linear-gradient(45deg, var(--dark-blue), var(--dark-green));
}

.faq-question h5 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--white);
}

.faq-question i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 1.5rem;
  background: var(--white);
  display: none;
  border-top: 1px solid var(--light-gray);
  color: var(--gray);
  line-height: 1.6;
} 