/* Decorative Blobs */
.decorative-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none; /* Ensures blobs cannot capture pointer events */
  z-index: -10; /* Sends blobs far behind all other content */
  overflow: hidden;
}

.blob {
  position: absolute;
  width: 40vw; /* Subtle size for desktop */
  height: 40vw;
  opacity: 0.9; /* Reduced opacity for subtle visibility */
  filter: blur(30px); /* Balanced blur effect */
  border-radius: 50%;
}

.blob-top-left {
  left: -20vw; /* Partially off-screen for edge peeking */
  top: -10vw; /* Positioned to peek from the top-left */
  background-color: #E6F3FF;
}

.blob-top-right {
  right: -20vw; /* Partially off-screen for edge peeking */
  top: -10vw; /* Positioned to peek from the top-right */
  background-color: #FFE6E6;
}

.blob-bottom-left {
  left: -20vw; /* Partially off-screen for edge peeking */
  bottom: -10vw; /* Positioned to peek from the bottom-left */
  background-color: #E6FFE6;
}

.blob-bottom-right {
  right: -20vw; /* Partially off-screen for edge peeking */
  bottom: -10vw; /* Positioned to peek from the bottom-right */
  background-color: #E6E6FF;
}

/* Content layer */
.content {
  position: relative;
  z-index: 1; /* Ensures content is above the blobs */
  text-align: center; /* Centers text content */
}

/* General Styling */
body {
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center; /* Ensures centering for all container content */
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  padding: 0 24px;
  border-bottom: 1px solid #e5e5e5;
}

.logo {
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  color: #333;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0070f3;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
}

.button-outline {
  background-color: transparent;
  border: 1px solid #0070f3;
  color: #0070f3;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6px 20px; /* Reduced from 64px to 48px */
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 6px; /* Reduced from 16px to 12px */
}

.hero p {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 6px; /* Reduced from 32px to 24px */
}

/* Image Section Styling */
.image-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  margin: 0 auto;
}

.image-section .inserted-image {
  width: 60%; /* Keeps images at 60% of the screen width */
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  padding: 64px 0;
  border-top: 1px solid #e5e5e5;
  text-align: center; /* Ensures proper centering for feature content */
}

.feature {
  text-align: center;
}

.feature-icon {
  background-color: #e6f7ff;
  color: #0070f3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

footer {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid #e5e5e5;
  font-size: 0.875rem;
  color: #666;
}

/* Menu Button Styling */
#menuButton {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1000; /* High priority above all elements */
}

/* Navigation Menu Styling */
.nav-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000; /* High priority above blobs and other content */
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nav-menu.show {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.nav-menu ul li {
  margin: 20px 0;
}

.nav-menu ul li a {
  color: white;
  font-size: 2rem;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-menu ul li a:hover {
  background-color: var(--secondary-color);
  transform: scale(1.05);
}

/* Media Queries for Blob Adjustments */

/* For smaller screens (mobile) */
@media (max-width: 768px) {
  .blob {
    width: 50vw; /* Slightly larger for mobile */
    height: 50vw;
    filter: blur(20px); /* Reduced blur for smaller screens */
  }

  .blob-top-left, .blob-top-right, .blob-bottom-left, .blob-bottom-right {
    left: -25vw; /* Adjust for smaller screen sizes */
    right: -25vw;
    top: -15vw;
    bottom: -15vw;
  }
}

/* For larger screens (desktop) */
@media (min-width: 769px) {
  .blob {
    width: 40vw; /* Balanced size for desktop */
    height: 40vw;
    filter: blur(30px); /* Balanced for desktop */
  }

  .blob-top-left {
    left: -20vw; /* Visible edge peeking */
    top: -10vw;
  }

  .blob-top-right {
    right: -20vw; /* Visible edge peeking */
    top: -10vw;
  }

  .blob-bottom-left {
    left: -20vw; /* Visible edge peeking */
    bottom: -10vw;
  }

  .blob-bottom-right {
    right: -20vw; /* Visible edge peeking */
    bottom: -10vw;
  }
}

.paypal-button-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically if needed */
    margin: 20px 0; /* Optional: Add margin to space out the button */
}

.plan ul {
    list-style-position: inside; /* Keeps the bullets inside the list container */
    text-align: center; /* Centers the text */
    padding: 0; /* Removes extra padding */
}

.plan ul li {
    margin: 5px 0; /* Optional: Add spacing between list items */
}
