body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f9f5f9;
  overflow-x: hidden;
  padding-top: 100px;
  font-family: aloja !important;
  font-size: 16px;
  font-weight: 400;
}

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

a {
  text-decoration: none !important;
}

@font-face {
  font-family: aloja;
  src: url("../fonts/Aloja.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: monalessia;
  src: url("../fonts/monallesiascript.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@media (width <= 1200px) {
  .header nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header nav a {
    margin: 10px;
    width: auto;
  }

  .header .contact {
    position: static;
    margin-top: 6px;
  }
}

.header {
  width: 100%;
  padding: 20px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-height: 100px;
  position: fixed; /* Makes the header fixed */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; /* Ensures it's above other content */
}

.header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
}

.header .logo img {
  height: 85px;
  margin-right: 20px;
}

@media (width <= 768px) {
  .header .logo img {
    height: 65px;
    margin-right: 0;
    margin-left: -10px;
  }
}

.header nav {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  align-items: center;
  position: relative;
}

.header nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #555;
  font-size: 1rem;
  padding: 10px 15px;
  font-family: Mulish, sans-serif;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.header nav a:hover {
  background-color: #d1c4e9;
  color: #fff;
}

.header nav .active {
  background-color: #b5a2bd;
  color: #fff;
}

.header .contact {
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  right: 7px;
}

.contact a {
  color: black;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-family: Mulish, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
}

.header .contact .phone:hover {
  background-color: #d1c4e9;
  color: #fff;
  padding: 10px 15px;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  background: url("../images/home-page/event.png") center/cover no-repeat;
  position: relative;
}

.hero-content {
  background: white;
  border-radius: 50%;
  text-align: center;
  border-left: 20px solid #efe6ee;
  border-right: 20px solid #efe6ee;
  border-bottom: 20px solid #efe6ee;
  border-top: none;
  height: 780px;
  margin-top: -23%;
  width: 49%;
}

@media (width >= 992px) and (width <= 1200px) {
  .hero-content {
    height: 620px;
  }
}

@media (width >= 2100px) and (height <= 1300px) {
  .hero-content {
    height: 1100px;
  }
}

@media (width >= 2200px) and (height <= 982px) {
  .template-container {
    height: 920px;
  }
}

@media (width >= 768px) and (width <= 991px) {
  .hero-content {
    height: 620px;
  }
}

@media (width <= 768px) {
  .hero-content {
    height: 400px;
    border-radius: 0%;
  }

  .hero-content-1 .btn-primary {
    padding: 5px;
  }

  .hero p {
    font-size: 1rem;
  }
}

.hero-content-1 h2 {
  font-size: 3.5rem;
  color: #b5a2bd;
}

.hero-content-1 p {
  font-size: 18px;
  padding-bottom: 35px;
  font-family: Mulish, sans-serif;
}

.hero-content-1 {
  margin-top: 55%;
}

@media (width <= 768px) {
  .hero-content-1 {
    margin-top: 75%;
  }

  .hero-content-1 p {
    padding-bottom: 0;
    font-size: 1rem;
  }

  .hero-content-1 h2 {
    font-size: 2rem;
  }
}

.hero h1,
.hero p,
.hero .btn {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease forwards;
}

.hero h1 {
  animation-delay: 0.3s;
}

.hero p {
  animation-delay: 0.5s;
}

.hero .btn {
  animation-delay: 0.7s;
}

.template-container {
  display: flex;
  gap: 10px;
  width: 100%;
  align-items: flex-end;
  height: 500px;
}

.template-box {
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1.5s ease forwards;
  width: 100%;
}

.template-box:nth-child(1) {
  animation-delay: 0.8s;
}

.template-box:nth-child(2) {
  animation-delay: 1s;
}

.template-box:nth-child(3) {
  animation-delay: 1.2s;
}

.template-box:nth-child(4) {
  animation-delay: 1.4s;
}

.template-box:nth-child(5) {
  animation-delay: 1.6s;
}

@media (width <= 768px) {
  .template-box {
    margin-top: 5px !important;
  }

  .template-box:nth-child(1) {
    height: 100% !important;
  }

  .template-box:nth-child(2) {
    height: 100% !important;
  }

  .template-box:nth-child(3) {
    height: 100% !important;
  }

  .template-box:nth-child(4) {
    height: 100% !important;
  }

  .template-box:nth-child(5) {
    height: 100% !important;
  }

  .template-container {
    height: auto;
  }
}

.template-box img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateClockwise {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(4deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.left-shape {
  position: absolute;
  left: 0;
  top: 0;
  animation: rotateClockwise 5s ease-in-out infinite;
  transform-origin: bottom center;
}

.right-shape {
  position: absolute;
  right: 0;
  top: 0;
  animation: rotateClockwise 5s ease-in-out infinite;
  transform-origin: bottom center;
}

.left-shape img {
  max-width: 250px;
}

.right-shape img {
  max-width: 250px;
}

@media (width <= 768px) {
  .left-shape img {
    max-width: 150px;
  }

  .right-shape img {
    max-width: 150px;
  }
}

@media (width >= 991px) {
  .header nav {
    margin-right: 180px;
  }
}

@media (width <= 991px) {
  .header .contact .phone .phone-text {
    display: none; /* Hide text on smaller screens */
  }

  .header .contact .phone i {
    font-size: 1.5rem; /* Increase icon size */
    display: inline-block;
  }
}

footer {
  background-color: rgb(181 162 189 / 70%);
  color: white !important;
  text-align: center;
  font-size: 0.9rem;
  font-family: Mulish, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: auto;
  padding-top: 30px;
  padding-bottom: 10px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-contact {
  flex: 2.5;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-contact a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.footer-contact a i {
  font-size: 1.3rem;
}

.footer-contact a:hover {
  color: #25d366;
}

/* Responsive Fix */
@media (width <= 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-contact {
    justify-content: center;
  }
}

.laevite-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 50px 20px;
  min-height: calc(100vh - 200px);
}

.contact-container {
  min-height: calc(100vh - 200px);
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 50px 20px;
}

.contact-container h2 {
  font-size: 3.5rem;
  color: #b5a2bd;
  padding-bottom: 30px;
}

@media (width <= 768px) {
  .contact-container h2 {
    font-size: 2rem;
  }
}

.contact-wrapper h2 {
  font-size: 2rem;
  font-family: aloja !important;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 30px;
  font-family: Mulish, sans-serif;
}

.contact-form-container,
.contact-info {
  flex: 1;
  max-width: 600px;
  padding: 20px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
}

.contact-info a {
  color: black;
}

.contact-info p {
  font-size: 16px;
}

.contact-form-container h2,
.contact-info h2 {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact-form button {
  width: 100%;
  background: #b5a2bd;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #a18ea3;
}

.phone a:hover {
  background: #d1c4e9;
}

.map-container {
  margin-top: 40px;
  text-align: center;
}

@media (width <= 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.hero-content-1 .btn-primary {
  background-color: #b5a2bd;
  border-color: white;
  margin-top: 25px;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 50px 20px;
  min-height: calc(100vh - 200px);
}

.gallery-container p {
  font-family: Mulish, sans-serif;
  font-size: 18px;
}

.gallery-container h2 {
  font-size: 3.5rem;
  color: #b5a2bd;
  padding-bottom: 30px;
}

@media (width <= 768px) {
  .gallery-container h2 {
    font-size: 2rem;
  }
}

.filter-container {
  font-family: Mulish, sans-serif;
}

.filter-container select {
  padding: 8px;
  font-size: 1rem;
  border-radius: 5px;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Hide Extra Images Initially */

/* View More Button */

/* Lightbox Styles */
.lightbox {
  background-color: rgb(0 0 0 / 80%);
  text-align: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  margin-top: 5%;
  border-radius: 10px;
}

.close-lightbox {
  right: 40px;
  font-size: 40px;
}

/* Lightbox Carousel Controls */
.lightbox-controls {
  width: 100%;
}

.lightbox-controls button {
  background: rgb(255 255 255 / 30%);
  padding: 10px 20px;
  font-size: 2rem;
  transition: 0.3s;
}

.lightbox-controls button:hover {
  background: rgb(255 255 255 / 70%);
}

/* Hide Extra Images Initially */

#view-more-btn {
  background-color: #b5a2bd;
  color: white;
  border: none;
  padding: 10px 20px;
  font-family: Mulish, sans-serif;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#view-more-btn:hover {
  background-color: #a18ea3;
}

/* Ensure all images are the same size */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.gallery-item img {
  width: 100%;
  height: 100%; /* Fixed height for uniformity */
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

/* Square-Opening Effect on Scroll */
@keyframes squareReveal {
  0% {
    clip-path: inset(50% 50% 50% 50%);
    opacity: 0;
  }

  100% {
    clip-path: inset(0% 0% 0% 0%);
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  animation: squareReveal 0.8s ease-in-out forwards;
}

/* Hover Zoom Effect */
.gallery-item img:hover {
  transform: scale(1.05);
}

/* Hide Extra Images Initially */
.gallery-item.extra {
  display: none;
}

/* View More Button */
.view-more-container {
  text-align: center;
  margin-top: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgb(0 0 0 / 20%);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 90%);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1000;
}

.lightbox img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.close-lightbox:hover {
  color: #ff6b81;
}

/* Lightbox Navigation */
.lightbox-controls {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 90%;
  top: 50%;
}

.lightbox-controls button {
  background: none;
  border: none;
  font-size: 40px;
  color: white;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.lightbox-controls button:hover {
  opacity: 1;
}

/* Dropdown Container */
.filter-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* Dropdown Label */
.filter-container label {
  font-size: 18px;
  font-weight: bold;
  color: black; /* Light pastel purple */
}

/* Floral-Inspired Dropdown */
#event-filter {
  font-size: 16px;
  padding: 12px 18px;
  border: 2px solid #b5a2bd;
  background-color: white;
  color: #b5a2bd;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;

  /* Floral-style border using box-shadow */
  box-shadow: inset 0 0 10px rgb(181 162 189 / 30%),
    0 0 15px rgb(181 162 189 / 30%);
}

/* Hover Effect */
#event-filter:hover {
  background-color: #b5a2bd;
  color: white;
  border-color: #a38eb3;
}

/* Focus Effect */
#event-filter:focus {
  outline: none;
  border-color: #a38eb3;
}

/* Soft petal-like effect on edges */
#event-filter {
  border-radius: 12px;
  border-style: solid;
  border-width: 2px;
}

/* Mobile Responsive */
@media (width <= 600px) {
  .filter-container {
    flex-direction: column;
    gap: 5px;
  }

  #event-filter {
    width: 100%;
  }
}

/* services */

/* Services Section */
.services-container {
  text-align: center;
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Service Item */
.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
  opacity: 0; /* Ensure elements start hidden */
  transform: translateY(50px);
  animation: fadeInSlide 1s ease-in-out forwards;
}

/* Add animation delay for staggered effect */
.service-item:nth-child(2) {
  animation-delay: 0.3s;
}

.service-item:nth-child(3) {
  animation-delay: 0.6s;
}

.service-item:nth-child(4) {
  animation-delay: 0.9s;
}

.service-item:nth-child(5) {
  animation-delay: 1.2s;
}

.service-item:nth-child(6) {
  animation-delay: 1.5s;
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-item img {
  width: 50%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.service-item:hover img {
  transform: scale(1.05);
}

/* Keyframes for fade-in animation */
@keyframes fadeInSlide {
  0% {
    opacity: 0;
    transform: translateY(70px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ensure animation stays in place */
.service-item {
  animation-fill-mode: forwards;
}

/* Responsive */
@media (width <= 768px) {
  .service-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .service-item.reverse {
    flex-direction: column;
  }

  .service-item img {
    width: 100%;
    max-height: 300px;
  }

  .service-content {
    width: 100%;
  }
}

.service-content {
  width: 45%;
  text-align: left;
  padding: 20px;
  border-left: 5px solid #d1c4e9; /* Adds a subtle left border for design */
}

.service-content h2 {
  font-size: 2rem; /* Bigger heading for better readability */
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  position: relative;
}

.service-content h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #d1c4e9;
  margin-top: 8px;
}

.service-content p {
  color: black;
  line-height: 1.6;
}

/* Responsive */
@media (width <= 768px) {
  .service-content {
    width: 100%;
    text-align: center;
    border-left: none; /* Remove border on mobile */
    padding: 15px;
  }

  .service-content h2::after {
    background: none;
  }

  .service-content h2 {
    font-size: 1.8rem;
    border-bottom: 5px solid #d1c4e9; /* Use top border instead */
    padding-bottom: 0 !important;
  }
}

.event-planning-flow {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.event-planning-flow h2 {
  font-size: 3.5rem;
  color: #b5a2bd;
  padding-bottom: 30px;
}

@media (width <= 768px) {
  .event-planning-flow h2 {
    font-size: 2rem;
  }
}

.event-planning-flow p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

/* Flowchart Container */
.flowchart {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* Flowchart Items */
.flow-item {
  background: white;
  padding: 20px;
  width: 200px;
  height: 300px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
  transition: transform 0.3s ease;
}

.flow-item:hover {
  transform: scale(1.05);
}

.flow-item i {
  font-size: 2.5rem;
  color: #b5a2bd;
  margin-bottom: 10px;
}

.flow-item h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 8px;
}

.flow-item p {
  font-size: 1rem;
  color: black;
  font-family: Mulish, sans-serif;
}

/* Flowchart Arrows */
.arrow {
  font-size: 2rem;
  color: #b5a2bd;
  font-weight: bold;
}

/* Responsive */
@media (width <= 768px) {
  .flowchart {
    flex-direction: column;
  }

  .arrow {
    transform: rotate(90deg);
  }
}

/* Services Heading Section */
.services-container h2 {
  font-size: 3.5rem;
  color: #b5a2bd;
  padding-bottom: 30px;
}

@media (width <= 768px) {
  .services-container h2 {
    font-size: 2rem;
  }
}

.services-container p {
  font-family: Mulish, sans-serif;
  font-size: 18px;
  padding-bottom: 10px;
  text-align: justify;
}

.rental-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 20px;
  max-width: 1300px;
  margin: auto;
}

.rental-item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rental-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgb(0 0 0 / 15%);
}

.rental-item img {
  width: 350px;
  height: 350px;
  object-fit: fill;
  border-radius: 10px;
  cursor: pointer;
}

.rental-item .rental-info {
  flex-grow: 1;
}

.rental-item h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 5px;
}

.rental-item p {
  font-size: 1rem;
  color: #666;
}
.rental-details-container h2 {
  font-size: 2rem !important;
  font-family: aloja !important;
}
.rental-items {
  font-family: Mulish, sans-serif;
}
.price {
  display: block;
  font-size: 1.2rem;
  color: #b5a2bd;
  font-weight: bold;
  margin-top: 5px;
}

.rent-btn,
.quantity-container button,
.rental-form button {
  background-color: #b5a2bd;
  color: white;
  border: none;
  font-size: 1rem;
  border-radius: 5px;
  padding: 15px 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.quantity-container button {
  padding: 0 !important;
  align-items: center;
  justify-content: center;
}

.rent-btn:hover,
.quantity-container button:hover,
.rental-form button:hover {
  background-color: #9a8aaa;
}

/* Quantity Selector */
.quantity-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-container button {
  width: 30px;
  height: 30px;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Selected Items & Form - Side by Side */
.rental-details-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
  font-family: Mulish, sans-serif;
}

/* Selected Items */
.selected-items-section {
  flex: 1;
  background: #fff;
  box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
}

/* Rental Form */
.rental-form {
  flex: 1;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
  text-align: center;
}

.rental-form h2 {
  font-size: 2rem;
  color: #9a8aaa;
}

.rental-form input,
.rental-form textarea {
  width: 90%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.rental-form button {
  width: 200px;
  padding: 12px;
  font-weight: bold;
}

/* Image Modal - Fullscreen Zoom */

/* Responsive Design */
@media (width <= 900px) {
  .rental-details-container {
    flex-direction: column;
    gap: 20px;
  }
}

/* Selected Items List */

/* Lightly Visible Icon */

/* Selected Items Section */
.selected-items-section {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
}

/* Small Cart Icon in Middle */
.cart-icon {
  font-size: 2rem;
  color: #b5a2bd;
  opacity: 0.7;
  margin-bottom: 5px;
  display: block;
  padding-top: 130px;
}

/* Selected Items List */
.selected-items-section ul {
  list-style: none;
  padding: 0;
}

.selected-items-section li {
  font-size: 1.2rem;
  color: #333;
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Lightly Visible Box Icon for Each Item */
.selected-items-section li i {
  font-size: 1.2rem;
  color: #b5a2bd;
  opacity: 0.5;
}

@media (width <= 768px) {
  nav {
    display: none !important;
  }

  .contact {
    display: none !important;
  }
}

/* Blur Effect When Menu is Open */

/* Hamburger Icon */
.menu-toggle {
  top: 20px;
  left: 20px;
  font-size: 2rem;
  color: #b5a2bd;
  cursor: pointer;
  z-index: 1000;
}

/* Overlay Background */
.nav-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 80%);
  transition: left 0.1s ease-in-out;
  z-index: 1000;
}

/* Active State (Menu Open) */
.nav-overlay.active {
  left: 0;
}

/* Navigation Menu */
.nav-menu {
  background: #b5a2bd;
  height: 100%;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto; /* Makes menu scrollable */
  max-height: 100vh; /* Prevents full-page overflow */
  width: 75%;
}

/* Scrollbar Customization */
.nav-menu::-webkit-scrollbar {
  width: 8px;
}

.nav-menu::-webkit-scrollbar-thumb {
  background: #9a8aaa;
  border-radius: 10px;
}

.nav-menu::-webkit-scrollbar-track {
  background: rgb(255 255 255 / 20%);
}

.close-menu {
  background: #fff;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  padding: 15px 20px;
  cursor: pointer;
  width: 100%;
  text-align: center;
  color: #b5a2bd;
}

/* Navigation Links */
.nav-menu ul {
  list-style: none;
  padding: 0;
  width: 100%;
  text-align: center;
}

.nav-menu ul li {
  padding: 15px 0;
  border-bottom: 1px solid #fff;
}

.nav-menu ul li a {
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  display: block;
  width: 100%;
  padding: 10px 0;
  transition: background 0.3s ease;
}

.nav-menu ul li a:hover {
  background: rgb(255 255 255 / 20%);
}

/* Hide Menu on Desktop */
@media (width >= 768px) {
  .menu-toggle {
    display: none;
  }
}

@media (width <= 768px) {
  .template-container {
    flex-direction: column; /* Stack vertically */
    gap: 20px; /* Add space between stacked items */
    align-items: center; /* Center items */
    padding-top: 10px;
  }

  .template-box {
    width: 90%; /* Make items take full width on mobile */
  }

  .rental-item {
    flex-direction: column;
  }
}

.mobile-contact-icons,
.menu-toggle {
  display: none;
}

.mobile-contact-icons {
  display: flex;
  gap: 15px;
  padding-right: 15px;
}

.mobile-contact-icons a {
  text-decoration: none;
  font-size: 1.5rem;
  color: #b5a2bd;
  transition: color 0.3s;
}

.mobile-contact-icons a:hover {
  color: #9a8aaa;
}

/* Show Only Icons on Mobile */
@media (width <= 768px) {
  .header nav {
    display: none; /* Hide full navbar */
  }

  .menu-toggle {
    display: block;
    font-size: 2rem;
    cursor: pointer;
  }
}
.rental-container {
  max-width: 1300px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
  min-height: calc(100vh - 200px);
}
.rental-container h2 {
  font-size: 3.5rem;
  color: #b5a2bd;
  padding-bottom: 30px;
}

/* Centered Container */
.invite-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgb(0 0 0 / 20%);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

/* Form Section */
.invite-form {
  width: 48%;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  font-family: Mulish, sans-serif;
  box-shadow: 0 2px 6px rgb(0 0 0 / 10%);
}

/* Form Title */
.invite-form h2 {
  text-align: center;
  color: #333;
  font-size: 22px;
  margin-bottom: 15px;
}

/* Labels */
.invite-form label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 5px;
  color: #555;
}

/* Input Fields */
.invite-form input,
.invite-form select,
.invite-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
  box-sizing: border-box;
}

/* Textarea */
.invite-form textarea {
  height: 80px;
  resize: none;
}

/* Buttons */
.invite-form button {
  width: 100%;
  padding: 12px;
  border: none;
  cursor: pointer;
  background-color: #b5a2bd;
  color: white;
  border-radius: 8px;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
  font-weight: bold;
}

.invite-form button:hover {
  background-color: #b5a2bd;
  transform: scale(1.03);
}

/* Hide buttons initially */
#sendEmailButton,
#downloadButton {
  display: none;
}

/* Invitation Preview Section */
.invite-preview {
  width: 48%;
  height: 800px;
  padding: 20px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  border: 2px solid #ddd;
  box-shadow: 0 4px 6px rgb(0 0 0 / 15%);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  position: relative;
  background-color: #333;
}

/* Overlay for Better Readability */
.invite-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* Text Inside Invitation */
.invite-preview h3,
.invite-preview p {
  position: relative;
  z-index: 2;
}

/* Responsive Design */
@media (width <= 768px) {
  .invite-container {
    flex-direction: column;
    align-items: center;
  }

  .invite-form,
  .invite-preview {
    width: 100%;
  }
}

/* vendor */

/* General Reset */

/* Background */

.vendor-header {
  color: #b5a2bd;
  text-align: center;
  font-size: 3.5rem;
  padding-bottom: 25px;
}

@media (width <= 768px) {
  .vendor-header {
    font-size: 2rem;
  }
}

.laevite-container h2 {
  font-size: 3.5rem;
  color: #b5a2bd;
}

.laevite-container .invite-form h2 {
  font-size: 2rem;
  color: black;
}

.vendor-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-bottom: 120px; /* Increased bottom padding to prevent overlap */
  font-family: Mulish, sans-serif;
}

.vendor-container h2 {
  font-size: 2.5rem;
  color: #b5a2bd;
  padding-bottom: 30px;
  font-family: aloja !important;
}

/* Dark Overlay */
.overlay {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 30%);
  width: 90%;
  max-width: 500px;
  position: relative;
  z-index: 2;
}

/* Vendor Form */
.vendor-form {
  background: rgb(255 255 255 / 10%);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px; /* Ensures it stays above the footer */
}

/* Form Fields */
.vendor-form input,
.vendor-form textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #b5a2bd;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  background: white;
  color: black;
}

/* Textarea */
.vendor-form textarea {
  height: 80px;
  resize: none;
}

/* Button */
.vendor-form button {
  width: 100%;
  padding: 12px;
  background-color: #8c7599; /* Darker shade for better visibility */
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.vendor-form button:hover {
  background-color: #705b7a;
  transform: scale(1.05);
}

/* Success Message */
#success-message {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #b5a2bd;
}

/* Responsive Fix */
@media (width <= 600px) {
  .overlay {
    width: 95%;
    padding: 30px;
  }
}

.footer-container {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}

@media (width >= 1201px) and (width <= 1258px) {
  .header nav a {
    margin: 0 10px;
  }
}

.invite-main {
  font-family: monalessia !important ;
  color: #f4f4f4;
  font-weight: bolder;
  font-style: oblique;
  font-size: 1.5em;
  padding-top: 110px;
}

.coming-soon-container h2 {
  font-size: 3.5rem;
  color: #b5a2bd;
  padding-top: 20px;
  padding-bottom: 100px;
}

@media (width <= 768px) {
  .coming-soon-container h2 {
    font-size: 2rem;
  }
}

@media (height >= 1060px) {
  .hero {
    min-height: calc(100vh - 200px);
  }

  .template-container {
    min-height: calc(90vh - 200px);
  }
}

.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Ensures it stays on top */
}

@media (width <= 768px) {
  .floating_btn {
    right: 12px;
  }
}

.contact_icon {
  background-color: #b5a2bd;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
  animation: blink-animation 0.5s infinite alternate;
}

/* Blinking Animation */
@keyframes blink-animation {
  0% {
    box-shadow: 0 0 20px 15px rgb(181 162 189 / 70%);
  }

  100% {
    box-shadow: 0 0 40px 25px rgb(181 162 189 / 30%);
  }
}

/* Ensure it stays above footer */
footer {
  position: relative;
  z-index: 1;
}

.service-list {
  font-weight: 400;
  color: gray;
  text-align: left;
}

/* invoice styles */

/* ===== Invoice Specific Styles ===== */

.invoice-container {
  width: 900px;
  margin: 140px auto 20px; /* space for fixed header */
  border: 1px solid #000;
  padding: 20px;
  background: #fff;
  font-family: Arial, sans-serif !important; /* Prevent font-family conflict */
  color: #000;
}

.invoice-container .section,
.invoice-container .footer {
  border: 1px solid #000;
  padding: 10px;
  margin-bottom: 10px;
}

.invoice-container .row1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.invoice-container .row2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.invoice-container .bold {
  font-weight: bold;
}

.invoice-container .center {
  text-align: center;
}

.invoice-container .section-title {
  background: #e0e0e0;
  padding: 5px;
  font-weight: bold;
  text-align: left;
}

.invoice-container table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.invoice-container th {
  border: 1px solid #000;
  padding: 8px;
  text-align: left;
}

.invoice-container .footer-note {
  color: orange;
  font-weight: bold;
  margin-top: 10px;
}

.invoice-container input,
.invoice-container select,
.invoice-container button {
  padding: 8px;
  font-size: 14px;
  margin-top: 5px;
  box-sizing: border-box;
}

.invoice-container input[readonly] {
  background: #f4f4f4;
  cursor: not-allowed;
}

.center {
  text-align: center;
}

@media (width <= 960px) {
  .invoice-container {
    width: 95%;
    padding: 10px;
  }
}

.invoice-container button {
  width: 20%;
  padding: 12px;
  border: none;
  cursor: pointer;
  background-color: #b5a2bd;
  color: white;
  border-radius: 8px;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
  font-weight: bold;
}
button.remove {
  width: 100%;
  padding: 12px;
  border: none;
  cursor: pointer;
  background-color: #b5a2bd;
  color: white;
  border-radius: 8px;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
  font-weight: bold;
}

.center button {
  padding: 12px;
  border: none;
  cursor: pointer;
  background-color: #b5a2bd;
  color: white;
  border-radius: 8px;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
  font-weight: bold;
}

.header1 {
  max-width: 100%;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #000;
  box-sizing: border-box;
}

.row2 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.row2 div {
  display: flex;
  flex-direction: column;
}

.row2 div strong {
  margin-bottom: 5px;
  text-align: left;
  font-weight: bold;
}

.row2 div input[type="text"],
.row2 div input[type="date"] {
  width: 400px;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #000;
  border-radius: 4px;
}

.contact-info .qr-codes {
  display: flex;
  gap: 2rem; /* space between QR blocks */
  margin-top: 1.5rem; /* breathing room above the QR section */
  justify-content: end; /* align items to the left */
  flex-direction: column;
}

.contact-info .qr-item {
  text-align: -webkit-center;
  font-size: 1rem;
}

.contact-info .qr-item img {
  width: 250px;
  height: 250px;
  display: block;
  margin-bottom: 0.5rem;
}

@media (width <= 1200px) {
  .invite-preview {
    position: relative; /* needed for absolute children */
    width: 300px; /* or whatever your templates are */
    height: 500px; /* match the aspect ratio of your JPG */
    background-size: cover; /* fill the box with your template */
    background-position: center;
    overflow: hidden;
  }

  .invite-preview .invite-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; /* so text wraps inside margins */
    text-align: center;
    z-index: 1;
    color: white;
    font-size: 1.1em;
  }

  .invite-preview .invite-main p {
    margin: 0.2em 0;
  }

  .invite-main {
    padding-top: 30px;
  }
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #f9f5f9; /* Optional: Background color */
  font-family: Mulish, sans-serif;
  font-size: 30px;
  color: #b5a2bd;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  padding-left: 0; /* Ensure no space before the text */
  animation: scroll-text 30s linear infinite;
}

@keyframes scroll-text {
  0% {
    transform: translateX(100%); /* Start from off-screen on the right */
  }

  100% {
    transform: translateX(-100%); /* Move to off-screen to the left */
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.marquee p span {
  animation: blink 2s step-start infinite;
}

footer p {
  margin: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

input[type="date"] {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  appearance: none;
  background: #fff;
  background-size: 1rem;
}
input[type="time"] {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  appearance: none;
  background: #fff;
  background-size: 1rem;
}
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.image-modal .zoomed-image {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}
@media (width <= 420px) {
  .rental-item img {
    width: 280px;
    height: 280px;
  }
}
