/* Define your branding colors using CSS variables */
:root {
    --primary-color: #00A651;     /* Replace with your exact primary color */
    --secondary-color: #E0F7E9;     /* Replace with your app’s secondary accent */
    --background-color: #ffffff;
    --text-color: #333;
  }
  
  /* Global Styles */
  body {
    font-family: Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
  }
  
  /* Hero Section */
  .hero {
    background: var(--secondary-color);
    padding: 100px 0;
    color: var(--text-color);
    text-align: center;
  }
  
  .hero-logo {
    max-width: 150px;
    margin-bottom: 20px;
  }
  
  /* Navbar Customization */
  .navbar {
    padding: 0.75rem 1rem;
  }
  
  .navbar .nav-link {
    font-size: 1rem;
  }
  
  /* Buttons */
  .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  /* Footer */
  footer {
    background: var(--secondary-color);
    color: var(--text-color);
  }

  .feature-image {
    max-width: 50%;
    height: auto;
  }

  /* Ensure the calendar images are positioned correctly */
.calendar-images {
  position: relative;
  width: 100%;
  max-width: 600px; /* Adjust based on your design */
  margin: 0 auto;
}

.calendar-images .feature-image {
  position: absolute;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.calendar-images .week-view {
  transform: translate(-110%, 80%);
  z-index: 1;
}

.calendar-images .day-view {
  transform: translate(-80%, 120%);
  z-index: 2;
}

/* Ensure other feature images are not affected */
.feature-item .feature-image {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 20px;
}

html {
  scroll-behavior: smooth;
}