body {
    font-family: 'Georgia', serif;
    background-color: #f6f0ea; /* soft cream */
    color: #3a2e2a;
    margin: 40px;
    padding: 0;
  }
  

  
  .gallery-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    background: linear-gradient(to bottom, #f6f0ea, #eaddd5);
    overflow: hidden;
  }
  
  .carousel {
    position: relative;
    width: 90%;
    max-width: 800px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  }
  
  .carousel-track-container {
    overflow: hidden;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.6s ease;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .carousel-slide {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
  }
  
  .carousel-slide img {
    width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
  }
  
  .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(234, 221, 213, 0.8);
    border: none;
    font-size: 2rem;
    padding: 0.4em 0.7em;
    cursor: pointer;
    border-radius: 50%;
    color: #3a2e2a;
    transition: background-color 0.3s;
    z-index: 2;
  }
  
  .carousel-button:hover {
    background-color: #d8c1b2;
  }
  
  .carousel-button.prev {
    left: 10px;
  }
  
  .carousel-button.next {
    right: 10px;
  }
  .swiper-container {
    width: 100%;
    max-width: 1000px;
    margin: 80px auto;
    overflow: visible; /* Allow partial slides to be visible */
    padding: 0 40px;    /* Add horizontal padding to show edges */
  }
  
  .swiper-wrapper {
    display: flex;
  }
  
  .swiper-slide {
    width: 80%; /* Smaller than container to allow room for next/prev */
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
  }
  
  .swiper-slide img {
    width: 100%;
    height: 500px; /* Set a fixed height */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    color: #3a2e2a;
    background-color: rgba(234, 221, 213, 0.8);
    padding: 0.4em 0.7em;
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }
  
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background-color: #d8c1b2;
  }
  
  .swiper-pagination-bullet {
    background-color: #a18a7f;
    opacity: 0.6;
  }
  
  .swiper-pagination-bullet-active {
    background-color: #6b4c3b;
    opacity: 1;
  }
  
  @media (max-width: 768px) {
    .carousel-button {
      font-size: 1.5rem;
      padding: 0.3em 0.5em;
    }
  }