@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --primary-green: #54BD95;
  --success-green: #54BD95;
  --dark-text: #191A15;
  --muted-text: #A6A6A6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-text);
  font-weight: 400;
  line-height: 1.6;
  background-image: url(/assets/images/bg.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top left;
}

/* Typography improvements with Inter font */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.display-4 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.display-5 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.fw-bold {
  font-weight: 700;
}

.fw-semibold {
  font-weight: 600;
}

.lead {
  font-weight: 400;
  line-height: 1.7;
}

/* Navigation */
.navbar {
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  color: var(--primary-green) !important;
  font-size: 33px;
  padding: 0;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  color: var(--muted-text);
}

.btn-success {
  background-color: var(--success-green);
  border-color: var(--success-green);
  border-radius: 10px;
  padding: 10px;
}

.btn-success:hover {
  background-color: #38a169;
  border-color: #38a169;
}

.text-muted{
  color: var(--muted-text) !important;
}

/* Hero Section */
.hero-section {
  min-height: 682px;
  padding: 36px 0;
  scroll-margin-top: 100px;
}

.decorative-line {
  width: 100%;
  max-width: 480px;
}
.hero-p{
  max-width: 486px;
  width: 100%;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  object-fit: cover;
  height: 682px;
  width: 100%;
  border-radius: 60px;
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-primary:hover {
  background-color: #26a69a;
  border-color: #26a69a;
}

.features-section {
  padding: 80px 0;
}

.features-section .card {
  padding: 2rem;
  background-color: unset !important;
}

.feature-icon {
  width: 37px;
  height: 37px;
  margin-bottom: 18px;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background-color: #F9F8FE;
  scroll-margin-top: 100px;
}

.about-section img {
  border-radius: 32px;
  height: 478px;
  object-fit: cover;
}

/* Products Section */
.products-section {
  padding: 80px 0;
  scroll-margin-top: 100px;
}

.product-image {
  height: 430px;
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
}

.products-section .card {
  background-color: unset !important;
  border: none;
}

/* Footer */
.footer-section {
  background: var(--primary-green);
  scroll-margin-top: 100px;
  color: #F5F5F5 !important;
}

.copyright-section {
  background-color: #005DE3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .hero-image-wrapper img {
    height: 300px;
  }

  .display-4 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 1.75rem;
  }

  /* About section responsive images */
  .about-section img {
    height: 250px;
  }

  /* Product images responsive */
  .product-image {
    height: 250px;
  }

  /* Adjust padding for mobile */
  .about-section,
  .products-section,
  .features-section {
    padding: 60px 0;
  }
}

@media (max-width: 992px) {
  /* Tablet adjustments */
  .about-section img {
    height: 350px;
  }

  .product-image {
    height: 320px;
  }
}

@media (max-width: 1200px) {
  /* Desktop adjustments */
  .about-section img {
    height: 400px;
  }

  .product-image {
    height: 380px;
  }
}

@media (min-width: 1400px) {
  /* Large desktop - maintain original heights with max-width constraint */
 .container {
    max-width: 1223px;
  }

  .about-section img {
    height: 478px;
  }

  .product-image {
    height: 430px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Additional hover effects */
.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}
