/* CSS from index.html and index_alt.html moved here */
:root {
  --balloon-size: min(180px, 17vw);
  --heart-size: min(179px, 36vw);
  --glass-size: min(106px, 10vw);
  --icon-size:   min(160px, 18vw);
  --page-background: #82d3aeff;
  --page-content-background: #8eccb7;
  --radius: 10px;
}
@media (max-width: 768px) {
  :root {
    --balloon-size:  min(180px, 26vw);
    --heart-size: min(174px, 41vw);
    --glass-size: min(160px, 12vw);
    --icon-size:   min(160px, 18vw);
  }
  .main-text {
    width: 80vw;
  }
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Courier New",Courier ,Arial, sans-serif;
  font-weight: 200;
  color: white;
  background: var(--page-background);
  /* position: relative; */
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.video-background-inner {
  height: 100%;
  width: 100%;
}

.video-background video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9; 
  filter: blur(4.8px) saturate(0.7) brightness(1.1) sepia(0.2);
  transform: scale(1.1);
}

a {
  color: #fff;
}
.menu {
  position: relative;
  /* top: 1em; */
  /* right: 20px; */
  z-index: 10;
  display: flex;
  justify-self: center;
  margin: 1em auto;
  width: fit-content;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-button {
  background-color: #e6196878;
  padding: 10px 19px;
  text-decoration: none;
  border-radius: var(--radius);
  border-color: #fff;
  border-style: solid;
  border-width: 0.5px;
  transition: background-color 0.3s;
  margin: 0.5em;
  color: #ffffff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile view color swap */
@media (max-width: 768px) {
  .menu-button {
    background-color: #e6196878;
  }
  
  .menu-button:hover {
    background-color: #e6196878; /* Keep hover same as default for mobile */
  }
  
  .menu-button:active {
    background-color: #1e486a45; /* Transparent blue on click/active state */
    transition: background-color 0.1s; /* Faster transition for click feedback */
  }
}

.menu-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.menu-button:hover .menu-icon {
  transform: scale(1.1);
}

.menu-button:hover {
  background-color: #1e486a17;
}
.menu-placeholder {
  height: 56px;
}

h3, h4, h5, h6 {
  color: #022d52;
  font-weight: 600;
}

.scrolltop {
  position: fixed;
  bottom: 1em;
  right: 1em;
  z-index: 10000;
  display: none;
}

.scrolltop .menu-button {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  padding: 0;
  background-color: #82d3ae;
}
.scrolltop .menu-button:hover {
  background-color: #1e486a17;
}
.cta-button {
  background-color: #e61967;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 1em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 40px;
  display: inline-block;
  z-index: 10;
}

.cta-button:hover {
  background-color: #1e486a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 72, 106, 0.4);
}

.page, .stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  /* border-bottom: 1px dashed #fff; */
  overflow: hidden;
  padding-bottom: 3em;
}

.page#pictures {
  background: #fff;
  padding: 1em 0;
}

.main-text {
  width: min(500px,80vw);
  max-width: 90vw;
  height: auto;
}
.heart, .glass {
  position: absolute;
  height: auto;
}
.balloon {
  width: var(--balloon-size);
  /* animation: float 15s ease-in-out infinite; */
  display: block;
}
#balloon {
  top: 2%;
  right: 4%;
  position: absolute;
  transition: all .1s;
}
@keyframes float {
  0%, 100% {
    transform:  rotate(0deg);
  }
  50% {
    transform:  rotate(-3deg);
  }
}
.heart {
  width: var(--heart-size);
  bottom: 9%;
  left: 13%;
  animation: pulse 1s cubic-bezier(.92,1.61,0,-0.64) infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
.glass {
  width: var(--glass-size);
  bottom: 45%;
  right: 13%;
  transform-origin: bottom center;
  animation: tilt 12s ease-in-out infinite;
}
@keyframes tilt {
  0%, 100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}
.footer * {
  padding: 10px;
}
.footer {
  bottom: 1vh;
  margin: auto;
  left: 0;
  right: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.main-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #82d3ae33;
  backdrop-filter: blur(5px);
  padding: 1rem;
  border-radius: var(--radius);
  z-index: 100;
  box-shadow: 0px 0px 20px #ffffffab;
} 

/* Picture Grid Styles */
.sub-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
#about .sub-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background-color: #ffffff;
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  
  /*! margin: auto; */
}

#pictures .sub-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

#pictures .picture {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  filter: saturate(0.5) brightness(1.1);
}

#pictures .picture:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  filter: saturate(1) brightness(1);
}

@media (max-width: 768px) {
  #pictures .sub-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 1rem;
  }

  #pictures .picture {
    height: 250px;
  }
} 

/* Fullscreen Image Styles */
.fullscreen-overlay {
  z-index: 10001;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fullscreen-overlay.active {
  opacity: 1;
  visibility: visible;
}

.fullscreen-image-container {
  
  position: relative;
  width: 90%;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fullscreen-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fullscreen-overlay.active .fullscreen-image {
  opacity: 1;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #82d3ae;
  border: none;
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 10001;
}

.nav-arrow:hover {
  background: #1e486a17;
}

.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}

.fullscreen-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 24px;
  color: white;
  transition: background-color 0.3s ease;
  z-index: 10001;
}

.fullscreen-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .prev-arrow {
    left: 10px;
  }

  .next-arrow {
    right: 10px;
  }
}
.map
 {
    height: 80vh;
}
/* Close button */
.fullscreen-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: var(--radius);
  transition: background 0.3s ease;
}

.fullscreen-close:hover {
  background: rgba(255, 255, 255, 0.2);
} 



.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
  padding: 1rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #022d52;
}

.about-content p {
  color: #022d52;
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  #about .sub-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .about-image {
    height: 250px;
    width: 100%;
    margin-bottom: 1rem;
  }

  .about-content {
    padding: 0;
  }

  .about-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
} 

.container {
  max-width: 900px; /* Increased width for 3 columns */
  margin: 0 auto;
  background-color: white;
  border: 1px solid #ddd;
  padding: 2em;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* --- CSS Grid for 3-Column Layout --- */
#product-list {
  color: #1e486a;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Create 3 equal columns */
  gap: 1.5em;
}

.product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1em;
  border: 1px solid #eee;
  border-radius: var(--radius);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  /* Width is now controlled by the grid, so we remove it from here */
}
.product img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.product-name {
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 0.5em;
  min-height: 2.2em;
}
.product-description {
  font-size: 0.9em;
  color: #666;
  flex-grow: 1;
  margin: 0.5em 0;
}
.product-price {
  font-size: 1.2em;
  font-weight: bold;
  color: #022d52;
  margin: 0.5em 0;
}
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.quantity-selector input[type="number"] {
  text-align: center;
  -moz-appearance: textfield;
}

.quantity-selector input[type="number"]::-webkit-outer-spin-button,
.quantity-selector input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #022d52;
  background: #ffffff;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}

.quantity-btn:hover {
  background: #91ccbe;
}

.quantity-btn:active {
  background: #e0e0e0;
}

.quantity-btn.minus {
  padding-bottom: 2px;
}

.quantity-btn.plus {
  padding-bottom: 1px;
}
.summary, .checkout-section {
  color: #1e486a;
  margin-top: 2em;
  padding-top: 1.5em;
  border-top: 2px solid #1e486a70;
}
.summary a,
.checkout-section a {
  color: #1e486a;
  text-decoration: underline; /* Optional: makes links more visible */
}
.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.3em 0;
  font-size: 1.1em;
}
.summary-total {
  font-weight: bold;
  margin-top: 1em;
  font-size: 1.2em;
}
.checkout-button {
  width: 100%;
  padding: 0.8em 1em;
  font-size: 1.1em;
  cursor: pointer;
  background-color: #E91E63;
  color: white;
  border: none;
  border-radius: var(--radius);
  transition: background-color 0.3s;
  margin: 1em 0;
}
.checkout-button:hover {
  background-color: #1e486a;
}
.checkout-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
h1 {
  text-align: center;
  color: #1e486a;
  margin-bottom: 1.5em;
}
#loader, #error-message {
  text-align: center;
  font-size: 1.2em;
  padding: 2em;
}

/* --- Responsive Media Query --- */
@media (max-width: 768px) {
  #product-list {
    grid-template-columns: 1fr; /* Switch to 1 column on smaller screens */
  }
  .product {
      width: 100%; /* Ensure product takes full width in a single column */
  }
}

.header.menu {
  position: fixed;
  margin: 0 auto;
  width: 100%;
  z-index: 9000;
  background-color: #2020201f;
  backdrop-filter: blur(5px);
}

/* FAQ Section Styles */
.faq-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
}

.faq-item {
  border-bottom: 1px solid rgba(2, 45, 82, 0.1);
  margin-bottom: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.faq-question:hover {
  background-color: rgba(2, 45, 82, 0.02);
}

.faq-question {
  margin: 0;
  color: #022d52;
  font-size: 1.2em;
  font-weight: bold;
  transition: color 0.3s ease;
}

.faq-toggle {
  color: #022d52;
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 20px;
  opacity: 0;
  transform: translateY(-10px);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 39px 25px;
  opacity: 1;
  transform: translateY(0);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  opacity: 1;
}

.faq-answer p {
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: #022d52;
  opacity: 0.8;
  text-align: justify;
}

#faq {
  padding: 4em 2em;
}

#faq h2 {
  text-align: center;
  margin-bottom: 1.5em;
  color: #fff;
}

@media (max-width: 768px) {
  .faq-container {
    padding: 15px;
  }
  
  .faq-question {
    padding: 20px 15px;
  }
  
  .faq-question h3 {
    font-size: 1.1em;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 15px 20px;
  }
}


.event_logo__KpT8G {
  height: 1em;
}
.product-fee-text {
  font-size: 60%;
  margin-bottom: 1.5em;
}