:root {
  /* Primary Color Palette - Ice Cream Theme */
  --primary-pink: #ff6b9d;
  --primary-mint: #4ecdc4;
  --primary-vanilla: #ffeaa7;
  --primary-berry: #fd79a8;
  --primary-chocolate: #6c5ce7;
  
  /* Light Shades */
  --light-pink: #ffb3d1;
  --light-mint: #a7f3f0;
  --light-vanilla: #fff5d6;
  --light-berry: #feb2d4;
  --light-chocolate: #b6a9f3;
  
  /* Dark Shades */
  --dark-pink: #e84a7a;
  --dark-mint: #3ca89f;
  --dark-vanilla: #f0d48a;
  --dark-berry: #e85a8a;
  --dark-chocolate: #5b4fcf;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-mint) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-vanilla) 0%, var(--primary-berry) 100%);
  --gradient-tertiary: linear-gradient(135deg, var(--primary-chocolate) 0%, var(--primary-pink) 100%);
  
  /* Typography */
  --font-size-base: 0.9rem;
  --font-size-lg: 1rem;
  --font-size-sm: 0.8rem;
  --font-size-xs: 0.75rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* Respect reduced motion preferences */
@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-brand {
  font-size: 1.1rem !important;
  font-weight: 600;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-pink) !important;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: var(--gradient-primary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../INV_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}

/* Decorative Blob Shapes */
.hero-blob {
  position: absolute;
  border-radius: 50% 30% 70% 40%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero-blob:nth-child(1) {
  width: 300px;
  height: 300px;
  background: var(--primary-vanilla);
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.hero-blob:nth-child(2) {
  width: 200px;
  height: 200px;
  background: var(--primary-berry);
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Section Styling */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-chocolate);
}

.section-subtitle {
  font-size: 1rem;
  text-align: center;
  color: var(--primary-pink);
  margin-bottom: 1.5rem;
}

.section-desc {
  font-size: 0.9rem;
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-header {
  background: var(--gradient-secondary);
  border: none;
  padding: 1.5rem;
}

.card-body {
  overflow-x: hidden;
  padding: 1.5rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.card-text {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

/* Service Items */
.service-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-pink);
  margin: 1rem 0;
}

.service-features {
  font-size: 0.8rem;
  color: #888;
  margin-top: 1rem;
}

/* Team Members */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--light-pink);
}

.team-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--primary-mint);
}

/* Reviews/Testimonials */
.review-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  position: relative;
}

.review-item::before {
  content: '"';
  font-size: 4rem;
  color: var(--light-pink);
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: Georgia, serif;
}

.review-text {
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-chocolate);
  font-size: 0.85rem;
}

/* FAQ */
.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  background: var(--light-vanilla);
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-vanilla);
}

.faq-answer {
  padding: 1rem;
  background: white;
  border-left: 4px solid var(--primary-mint);
  margin-left: 1rem;
  font-size: 0.85rem;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  padding: 0.75rem;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-primary);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  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: var(--gradient-tertiary);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

#site-copyright {
  font-size: 0.75rem;
  opacity: 0.8;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* Price Plans */
.price-plan {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.price-plan:hover {
  transform: translateY(-5px);
}

.price-plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-berry);
  margin: 1rem 0;
}

.price-plan-features {
  font-size: 0.85rem;
  color: #666;
  margin-top: 1rem;
}

/* Process Steps */
.process-step {
  text-align: center;
  margin-bottom: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary-mint);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 1.5rem;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--light-mint);
}

.timeline-item:last-child::after {
  display: none;
}

/* Blog */
.blog-post {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-excerpt {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-pink);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Space page */
#space {
  min-height: 70vh;
  background: var(--gradient-secondary);
  border-radius: 15px;
  margin: 2rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .hero-blob {
    display: none;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
} 