body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-image: url("wall2.png"); /* your file name */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: "Oranienbaum", serif;

}


/* ============================= */
/* NAVBAR */
/* ============================= */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: #FAB12F;
  font-size: 15px;
}

.nav-links {
  display: flex;
  gap: 4rem;
  list-style: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background-color: #FAB12F;
}

.nav-links a {
  text-decoration: none;
  color: #C40C0C;
  font-size: 1.15rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #C40C0C;
  margin: 4px 0;
}

/* ============================= */
/* MOBILE MENU */
/* ============================= */
@media screen and (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; flex-direction: column; gap: 1rem; top: 60px; right: 0; background-color: #FAB12F; padding: 1rem; }
  .nav-links.nav-active { display: flex; }
}

/* ============================= */
/* TITLES */
/* ============================= */
.shimmer-title {
  font-size: 90px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 2;
  background: linear-gradient(120deg,#b8892b 0%,#ffd77a 20%,#fff2c2 40%,#ffd77a 60%,#b8892b 80%,#b8892b 100%);
  background-size: 400% 100%;
  background-position: 0% center;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmerFlow 14s linear infinite;
}

.title {
  font-family: "Carattere", cursive;
  font-size: 60px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px; /* <-- add this for space below subtitle */
  position: relative;
  z-index: 2;
  background: linear-gradient(120deg,#c9a24d 0%,#ffe29a 50%,#c9a24d 100%);
  background-size: 300% 100%;
  background-position: 0% center;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmerFlowSoft 20s linear infinite;
}

@keyframes shimmerFlow { from {background-position:0% center;} to {background-position:400% center;} }
@keyframes shimmerFlowSoft { from {background-position:0% center;} to {background-position:300% center;} }


/* ============================= */
/* FOOTER */
/* ============================= */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFD786;
  text-align: center;
  padding: 20px 0;
  position: relative;
}

.footer a { color: #FFD786; }

/* ============================= */
/* PAYMENT BUTTONS BELOW FOOTER */
/* ============================= */
.payment-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px auto 40px auto;
  flex-wrap: wrap;
  text-align: center;
}

.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: white;
  font-family: roman;
}

.payment-item .pay-icon {
  width: 60px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}




.twinkle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}


.twinkle-container span{
    position: absolute;
    width: 4px;
    height: 4px;
    background: #F5E6B8; /* soft champagne gold */
    border-radius: 0;
    transform: rotate(45deg);
    opacity: 0;
    animation: twinkle 3s infinite ease-in-out;
}
@keyframes twinkle {
  0%, 100% { 
    opacity: 0; 
    transform: rotate(45deg) scale(0.5); 
  }
  50% { 
    opacity: 1; 
    transform: rotate(45deg) scale(1); 
  }
}

/* Position, animation-delay, and scale variations for each star */
.twinkle-container span:nth-child(1)  { top: 5%;  left: 10%;  animation-delay: 0s;   transform: scaleY(0.8) rotate(45deg); }
.twinkle-container span:nth-child(2)  { top: 15%; left: 30%;  animation-delay: 0.5s; transform: scaleY(1)   rotate(45deg); }
.twinkle-container span:nth-child(3)  { top: 25%; left: 50%;  animation-delay: 1s;   transform: scaleY(0.7) rotate(45deg); }
.twinkle-container span:nth-child(4)  { top: 35%; left: 20%;  animation-delay: 1.2s; transform: scaleY(1.1) rotate(45deg); }
.twinkle-container span:nth-child(5)  { top: 45%; left: 70%;  animation-delay: 1.5s; transform: scaleY(0.9) rotate(45deg); }
.twinkle-container span:nth-child(6)  { top: 55%; left: 40%;  animation-delay: 1.8s; transform: scaleY(1)   rotate(45deg); }
.twinkle-container span:nth-child(7)  { top: 65%; left: 60%;  animation-delay: 2s;   transform: scaleY(0.8) rotate(45deg); }
.twinkle-container span:nth-child(8)  { top: 10%; left: 80%;  animation-delay: 2.3s; transform: scaleY(1.2) rotate(45deg); }
.twinkle-container span:nth-child(9)  { top: 20%; left: 5%;   animation-delay: 2.5s; transform: scaleY(0.7) rotate(45deg); }
.twinkle-container span:nth-child(10) { top: 30%; left: 90%;  animation-delay: 2.8s; transform: scaleY(1)   rotate(45deg); }
.twinkle-container span:nth-child(11) { top: 40%; left: 15%;  animation-delay: 3s;   transform: scaleY(0.9) rotate(45deg); }
.twinkle-container span:nth-child(12) { top: 50%; left: 35%;  animation-delay: 3.2s; transform: scaleY(1)   rotate(45deg); }
.twinkle-container span:nth-child(13) { top: 60%; left: 55%;  animation-delay: 3.5s; transform: scaleY(0.8) rotate(45deg); }
.twinkle-container span:nth-child(14) { top: 70%; left: 75%;  animation-delay: 3.8s; transform: scaleY(1.1) rotate(45deg); }
.twinkle-container span:nth-child(15) { top: 80%; left: 25%;  animation-delay: 4s;   transform: scaleY(0.9) rotate(45deg); }
.twinkle-container span:nth-child(16) { top: 85%; left: 45%;  animation-delay: 4.3s; transform: scaleY(1)   rotate(45deg); }
.twinkle-container span:nth-child(17) { top: 15%; left: 65%;  animation-delay: 4.5s; transform: scaleY(0.7) rotate(45deg); }
.twinkle-container span:nth-child(18) { top: 25%; left: 85%;  animation-delay: 4.8s; transform: scaleY(1)   rotate(45deg); }
.twinkle-container span:nth-child(19) { top: 35%; left: 35%;  animation-delay: 5s;   transform: scaleY(0.8) rotate(45deg); }
.twinkle-container span:nth-child(20) { top: 45%; left: 55%;  animation-delay: 5.3s; transform: scaleY(1.2) rotate(45deg); }
.twinkle-container span:nth-child(21) { top: 60%; left: 75%;  animation-delay: 5.5s; transform: scaleY(1)   rotate(45deg); }

.payment-item a {
  color: #FFFFFF !important;
  text-decoration: none !important;
}

.payment-item a,
.payment-item a:link,
.payment-item a:visited,
.payment-item a:hover,
.payment-item a:active {
  color: #FFFFFF !important;
  text-decoration: none !important;
}

.footer .payment-item a {
  color: #FFFFFF !important;
  text-decoration: none !important;
}

