/* Reset */
/* RESET AND BASE STYLING */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #222;
  background: linear-gradient(to right, #f8f9fc, #e0f7fa);
  transition: background 0.3s ease-in-out;
  overflow-x: hidden;
}

/* SCROLLBAR STYLING */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #4db6ac;
  border-radius: 10px;
}

/* LINKS */
a {
  text-decoration: none;
  color: #00897b;
  position: relative;
  transition: color 0.3s ease;
}

a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -2px;
  background-color: #00897b;
  transition: width 0.4s ease;
}

a:hover::after {
  width: 100%;
}

a:hover {
  color: #00695c;
}

/* HEADINGS */
h1, h2, h3, h4, h5, h6 {
  color: #004d40;
  transition: transform 0.3s ease;
}

h1:hover, h2:hover, h3:hover {
  transform: scale(1.05);
}

/* BUTTONS */
button, .btn {
  padding: 10px 20px;
  background-color: #00bfa5;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 191, 165, 0.3);
}

button:hover, .btn:hover {
  background-color: #00897b;
  transform: translateY(-2px);
}

/* CARD / BOX STYLE EXAMPLE */
.card {
  background: #ee56cd2c;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

/* ANIMATED SECTION FADE-IN */
.fade-in {
  animation: fadeIn 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* SMOOTH PAGE LOAD */
html {
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  background: linear-gradient(90deg, #ffe0c3, #ffd6a5); /* soft warm gradient */
  padding: 1rem 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #444;
  
}

.logo-img {
  width: 60px;
  height: auto;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #333;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  color: #fff;
  background-color: #be713d;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
/* Dropdown */
.dropdown {
  position: relative;
}

/* Dropdown Menu */
.dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  padding: 0.3rem 0;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  overflow: hidden;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown Arrow Pointer */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: -2px -2px 6px rgba(0, 0, 0, 0.05);
  z-index: -1;
}

/* Dropdown Items */
.dropdown-menu li a {
  display: block;
  padding: 0.3rem 1rem;    /* Less padding vertically */
  margin-bottom: 2px;      /* Tight spacing between items */
  color: #333;
  font-weight: 600;
  font-size: 14px;         /* Smaller font */
  text-decoration: none;
  border-radius: 6px;
  position: relative;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.dropdown-menu li:last-child a {
  margin-bottom: 0;
}

/* Hover Effect */
.dropdown-menu li a:hover {
  background: linear-gradient(90deg, #ffe0c3, #ffd6a5);
  color: #be713d;
  transform: translateX(3px) scale(1.03);
  box-shadow: inset 0 0 0 1.5px rgba(255, 214, 165, 0.4);
  text-shadow: 0 0 2px rgba(190, 113, 61, 0.6);
}


.subscribe-btn {
  background-color: #ff4d4d;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}



/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  padding: 20px;
}

/* Keep your background transparent effect */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/backgroundimage.webp') no-repeat center center/cover;
  opacity: 0.6; /* Keeping it as-is */
  z-index: 1;
  animation: zoomBg 20s ease-in-out infinite;
}

/* Foreground content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 2s ease-in-out;
}

/* Stylish Heading */
.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  animation: fadeInDown 1.5s ease-in-out;
}

/* Stylish Paragraph */
.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #e7e5ee;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 2s ease-in-out;
}

/* Stylish Button */
.btn {
  background: #ff6f00;
  color: #fff;
  padding: 0.9rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 111, 0, 0.4);
  animation: pulse 2s infinite;
}

/* Button hover effect */
.btn:hover {
  background: #e65100;
  transform: translateY(-3px);
}

/* Button pulse animation */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 111, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(255, 111, 0, 0);
  }
}
/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomBg {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}


/* Sections */
section {
  padding: 4rem 0;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #080808;
}

p, li {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.about {
  background: #f9f9f9;
  padding: 4rem 0;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.about-text {
  flex: 1 1 45%;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-text .highlight {
  color: #ff6600;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-features {
  list-style: none;
  padding: 0;
}

.about-features li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.about-features i {
  color: #ff6600;
  margin-right: 0.6rem;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}


/* Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: rgb(230, 210, 226);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 260px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  padding: 1rem;
  font-size: 1.3rem;
}

/* Party Section */
.parties {
  background: #fffaf2;
  padding: 4rem 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ff6600;
}

.section-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.highlight {
  color: #e85d04;
  font-weight: bold;
}

.party-packages {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.package-card {
  background: #fff;
  border: 2px solid #ffe5b4;
  border-radius: 10px;
  padding: 1.5rem;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-10px);
}

.package-card h3 {
  margin-bottom: 0.5rem;
  color: #ff6600;
}

.package-card .price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #e85d04;
  margin: 0.5rem 0;
}

.package-card.premium {
  background-color: #fff7e6;
  border-color: #ffcc80;
}

.inclusions {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.inclusions h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #ff6600;
}

.inclusions ul {
  list-style: none;
  padding: 0;
}

.inclusions li {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.inclusions i {
  margin-right: 0.5rem;
  color: #ff6600;
}

.booking-form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.booking-form h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #ff6600;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.booking-form .btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.booking-form .btn:hover {
  background-color: #e85d04;
}


/* Gallery Section */
.gallery-section {
  padding: 4rem 0;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 3 images per row */
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Pricing */
.pricing {
  background: #fdf5f5;
  padding: 4rem 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ff6600;
}

.section-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #444;
}

.pricing-table {
  overflow-x: auto;
}

.pricing table {
  margin: 0 auto;
  width: 80%;
  border-collapse: collapse;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
}

.pricing table thead {
  background-color: #ff6600;
  color: white;
}

.pricing table th,
.pricing table td {
  padding: 1rem;
  text-align: center;
  font-size: 1.1rem;
}

.pricing table tbody tr:nth-child(even) {
  background-color: #fff3e6;
}

.pricing table tbody tr:hover {
  background-color: #ffe0cc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact {
  background: #fff6f0;
  padding: 4rem 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #ff6600;
  margin-bottom: 2rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.contact-info p {
  font-size: 1.1rem;
  margin: 0.8rem 0;
  color: #444;
}

.contact-info i {
  color: #ff6600;
  margin-right: 10px;
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  color: #ff6600;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #cc5200;
}

.map {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
.footer {
  background: #f5a9a9;
  color: white;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 1rem;
}

/* Sign In / Sign Up Forms */
.form-container {
  max-width: 400px;
  margin: 5rem auto;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 10px;
}

.form-container h2 {
  text-align: center;
  color: #ff6600;
  margin-bottom: 1.5rem;
}

.form-container input {
  width: 100%;
  padding: 0.8rem;
  margin: 1rem 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.form-container button {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.form-container button:hover {
  background: #e65c00;
}

.form-section {
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.form-section .container {
  max-width: 400px;
  width: 100%;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.form-section input,
.form-section button {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.form-section .btn {
  background-color: #be713d;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.form-section .btn:hover {
  background-color: #a15322;
}

/* modal section */

.modal {
  display: none; 
  position: fixed;
  z-index: 2000;
  padding-top: 100px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: white;
  margin: auto;
  padding: 20px;
  border-radius: 5px;
  width: 300px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-content input {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
}

.modal-content button {
  padding: 10px 20px;
  background-color: #ff6600;
  border: none;
  color: white;
  cursor: pointer;
}

.close {
  float: right;
  font-size: 20px;
  cursor: pointer;
}

.pricing table {
  margin: 0 auto;
  width: 80%;
  border-collapse: collapse;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.pricing th, .pricing td {
  border: 1px solid #ddd;
  padding: 1rem;
  text-align: center;
}

.pricing th {
  background-color: #ffe0c3;
  color: #be713d;
  font-weight: bold;
}

.pricing tr:nth-child(even) {
  background-color: #f9f9f9;
}

.pricing tr:hover {
  background-color: #fff3e0;
  transition: background-color 0.2s ease;
}
footer {
  background: linear-gradient(90deg, #ffe0c3, #ffd6a5);
  color: rgb(10, 9, 9);
  padding: 2rem 0;
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 1rem;
}

    /* Stylish Loader */
    #loader {
      position: fixed;
      width: 100%;
      height: 100%;
      background-color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 2s ease;
    }

    .loader-wrapper {
      position: relative;
      width: 100px;
      height: 100px;
    }

    .loader-ring {
      position: absolute;
      top: 0;
      left: 0;
      width: 100px;
      height: 100px;
      border: 5px solid #ddd;
      border-top: 5px solid #e47448;
      border-radius: 50%;
      animation: spin 3s linear infinite;
    }

    .loader-logo {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Hide loader after load */
    body.loaded #loader {
      opacity: 0;
      pointer-events: none;
    }
 /* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 10, 25, 0.9), rgba(0, 0, 0, 0.95));
  backdrop-filter: blur(8px);
  transition: all 0.4s ease-in-out;
}

/* Modal Box */
.modal-content {
  background: rgba(20, 20, 30, 0.85); /* Slightly lighter for readability */
  margin: 5% auto;
  padding: 35px 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  position: relative;
  animation: glowPop 0.5s ease-in-out;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2), 0 0 60px rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.2);
}

/* Modal Heading (e.g., Sign Up) */
.modal-content h2 {
  font-size: 28px;
  color: #00ffe7;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Input Fields */
.modal-content input[type="email"],
.modal-content input[type="text"],
.modal-content input[type="password"] {
  width: 85%;
  padding: 14px 18px;
  margin-top: 18px;
  border: 2px solid #00ffe7;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  font-size: 15px;
  color: #00ffe7;
  outline: none;
  transition: 0.3s ease;
  font-family: 'Orbitron', sans-serif;
}

.modal-content p {
  color: #c0f7ff; /* light neon blue for visibility */
  font-size: 16px;
  margin-top: 10px;
  line-height: 1.5;
  text-shadow: 0 0 6px rgba(0, 240, 255, 0.3);
  font-family: 'Orbitron', sans-serif;
}


.modal-content input:focus {
  box-shadow: 0 0 10px #00ffe7, 0 0 20px #00ffe7;
  border-color: #00ffe7;
  background: rgba(0, 0, 0, 0.75);
}

/* Send Button */
.modal-content button {
  margin-top: 25px;
  padding: 12px 35px;
  background: linear-gradient(135deg, #00ffe7, #00bfff);
  color: #000;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-transform: uppercase;
  font-family: 'Orbitron', sans-serif;
}

.modal-content button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #00ffe7, 0 0 30px #00bfff;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 28px;
  font-weight: bold;
  color: #00ffe7;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #00bfff;
}

/* Animation */
@keyframes glowPop {
  0% {
    transform: scale(0.7);
    opacity: 0;
    box-shadow: 0 0 0 rgba(0, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
  }
}

