body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: linear-gradient(to right, #fceabb, #f8b500);
}

html{
  scroll-behavior: smooth;
}

/* Header & Navigation */
header {
  background: linear-gradient(to right, #ff512f, #dd2476);
  padding: 20px;
  color: white;
  text-align: center;
}

.stname {
  font-size: 70px;
  margin: auto;
}

nav.main-nav a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 9px;
}

nav.main-nav a:active {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 9px;
}

/* Main Content */
main {
  padding: 30px 20px;
  max-width: 1000px;
  margin: auto;
}

.conabout {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 5px 5px 10px 1px #000000;
}

/* Mini Menu */
.menu-box {
  margin-top: 40px;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 5px 5px 10px 1px #000000;
}

.mini-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  
}

.mini-nav button {
  background: #5b86e5;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.mini-nav button:hover {
  background: #36d1dc;
}

.mini-nav button.active {
  background: #2ecc71;
}

.menu-card {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
  box-shadow: 5px 5px 10px 1px #000000;
}

.party-section {
  background: linear-gradient(to right, #ff512f, #dd2476);
  padding: 20px;
  color: white;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.party-section h2 {
  margin-bottom: 15px;
}

.party-section p {
  font-size: 23px;
  margin: 10px 0;
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.info {
  text-align: left;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 20px;
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px,
              rgba(6, 24, 44, 0.65) 0px 4px 6px -1px,
              rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.cen-features {
  /* padding-left: 30%; */
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}

.responsive-section {
  margin: 40px auto;
  padding: 20px;
  max-width: 958px;
  width: 90%;
}

.amountspan{
  color: blue;
  font-size:30px;
}

.paymentinfo{
  color: green; 
  font-weight: bolder;
}

.warnheading{
  color: rgb(255, 0, 0); 
  text-decoration:doub solid black 20%;
}

.noteinfo{
  color: rgb(255, 0, 0);
}

.contact-info {
  text-align: left;
  max-width: 100%; /* You can change this to 600px or whatever fits */
  margin: auto;
  padding: 20px;
}

.contact-info a {
  text-decoration: none;
  color: blue; /* Uses current text color */
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

footer {
  margin-top: 50px;
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
}
