/* Base styles */
body {
    background-color: #6a2e6b; /* Light neutral */
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.7;
  }
  
  .heading {
    text-align: center;
    background-color: #6a2e6b; /* Deep plum */
    padding: 3rem 1rem;
    max-width: 64rem;
    margin: 0 auto;
  }
  
  h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    color: #d4c76f; /* Warm gold */
    margin: 0;
  }
  
  h2 {
    font-family: 'Hepta Slab', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #6a2e6b; /* Brand purple for headings */
  }
  
  p {
    font-size: 1.1rem;
    color: #555;
  }
  
  .navbar-links {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    justify-content: center;
  }
  
  .navbar-links a {
    text-decoration: none;
    color: #d4c76f; /* Warm gold */
    font-weight: bold;
    font-size: 18px;
    font-family:'Courier New', Courier, monospace;
    position: relative;
  }
  
  .navbar-links a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0%;
    background: #fff;
    transition: width 0.3s ease;
    position: absolute;
    bottom: -4px;
    left: 0;
  }
  
  .navbar-links a:hover::after {
    width: 100%;
  }
  
  /* Containers */
  .container01,
  .container02,
  .container03
   {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 64rem;
    width: 100%;
    margin: 2rem auto;
    padding: 2rem;
    box-sizing: border-box;
    border-radius: 16px;
    background-color: #d4c76f; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

   /* Containers */
  .container001
   {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 96rem;
    width: 100%;
    margin: 2rem auto;
    padding: 2rem;
    box-sizing: border-box;
    border-radius: 16px;
    background-color: #d4c76f; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .left-text, .right-text,
  .left-image, .right-image {
    flex: 1;
  }
  
  .left-text, .right-text {
    padding: 0 2rem;
  }
  
  .right-image img,
  .left-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
  }
  
  .container01:hover,
  .container02:hover,
  .container03:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }
  
  /* Read More Button */
  .read-more {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: #6a2e6b; /* Brand purple */
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  
  .read-more:hover {
    background-color: #501f52; /* Darker plum on hover */
  }
  
@media (max-width: 768px) {
  .container01,
  .container02,
  .container03,
  .container001 {
    flex-direction: column;   /* Stack items vertically */
    text-align: center;       /* Center content */
    padding: 1.5rem;          /* Reduce padding for smaller screens */
  }

  .left-text, .right-text, .left-image, .right-image {
    padding: 0;               /* Remove horizontal padding */
    margin: 0.5rem 0;         /* Add spacing between stacked elements */
  }

  .right-image img,
  .left-image img {
    width: 100%;              /* Image fills container */
    height: auto;             /* Maintain aspect ratio */
  }

  h1 {
    font-size: 2.5rem;  /* Smaller for mobile */
  }

  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;    /* Slightly smaller paragraphs */
  }

  .welcome-box {
    padding: 1rem;       /* Less padding on mobile */
  }

   .navbar-links {
    flex-direction: column;  /* Stack links */
    gap: 1rem;
    padding: 0.5rem 1rem;
  }

  .back-button {
    width: auto;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
}


  .back-button {
    display: inline-block;
    margin-bottom: 1rem; /* Better than big margin all around */
    padding: 0.5rem 1.2rem;
    background-color: #6a2e6b; 
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  
  .back-button:hover {
    background-color: #501f52;
  }

  html {
    overflow-y: scroll;
  }

.navbar-links {
  position: sticky;
  top: 1rem;
  z-index: 1000;
  background-color: #6a2e6b;  /* Or whatever color you want */
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.75rem 2rem;      /* More padding for the bubble look */
  border-radius: 2rem;         /* Makes it pill-shaped */
  margin: 0 auto;           /* Centered with some margin */
  width: fit-content;          /* So it wraps tight around the links */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* Subtle shadow for lift */
}


.heading {
  /* Remove position sticky/fixed if you added it earlier */
  position: static;
}

  
  
  
  