body {
  margin: 0;
  background: #0c0c0c;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

/* HEADER */
.top {
  display: flex;
  justify-content: space-between;
  padding: 25px 60px;
}

.logo {
  font-size: 28px;
  color: #d4af37;
  font-weight: bold;
}

.top nav a {
  margin-left: 30px;
  text-decoration: none;
  color: white;
  opacity: 0.7;
}

.top nav a:hover {
  opacity: 1;
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px 40px;
}

.hero h1 {
  font-size: 52px;
}

.hero p {
  color: #d4af37;
  letter-spacing: 2px;
}

/* CAMERA GRID */
.camera-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 60px;
}

.camera-card {
  background: #121212;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}


.camera-card:hover {
  transform: scale(1.05);
  background-color: hsl(0, 0%, 0%);
  color: white;
  box-shadow: 0 4px 20px rgb(252, 252, 252);
  
}


.camera-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.camera-card .info span{
  color: rgb(255, 255, 255);
}

.info {
  padding: 20px;
}

.info span {
  color: #d4af37;
}

/* .camera-card span:hover{
  color: blanchedalmond;
} */

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
}

/* CONTACT SECTION */
.contact-section {
  padding: 80px 40px;
  text-align: center;
}

.contact-section h2 {
  font-size: 42px;
  margin-bottom: 40px;
}

.contact-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: auto;
}

.contact-item {
  background: #121212;
  padding: 30px;
  border-radius: 16px;
}

.contact-item h4 {
  color: #d4af37;
  margin-bottom: 10px;
}

.contact-item p {
  opacity: 0.8;
  line-height: 1.6;
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  font-size: 26px;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  z-index: 1000;
}
.map-box iframe {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  border: none;
  margin-top: 40px;
}
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #d4af37;
  color: black;
  padding: 14px 25px;
  border-radius: 30px;
  font-weight: bold;
}
/* BOOKING PAGE */
.booking-hero {
  text-align: center;
  padding: 80px 20px 30px;
  color: white;
}

.booking-hero h1 {
  animation: alternateBounce 1.5s ease-in-out infinite;
  font-size: 46px;
}

.booking-hero p {
  color: #d4af37;
  letter-spacing: 1.5px;
}

/* CONTAINER */
.booking-container {
  display: flex;
  justify-content: center;
  padding: 40px 20px 80px;
}

/* CARD */
.booking-card {
  background: #121212;
  width: 100%;
  max-width: 480px;
  padding: 40px;
  border-radius: 22px;
}

/* FORM */
.booking-card label {
  display: block;
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 14px;
  opacity: 0.8;
}

.booking-card input {
  width: 100%;
  padding: 12px;
  background: #0b0b0b;
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 14px;
}

/* DATE ROW */
.date-group {
  display: flex;
  gap: 15px;
}

/* BUTTON */
.booking-card button {
  width: 100%;
  margin-top: 30px;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: #d4af37;
  color: black;
  font-weight: bold;
  cursor: pointer;
}

/* NOTE */
.note {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  opacity: 0.6;
}
button {
  background: #d4af37;
  color: black;
  border: none;
  padding: 8px 14px;
  margin-top: 10px;
  margin-right: 8px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
button {
  background: #d4af37;
  color: black;
  border: none;
  padding: 8px 14px;
  margin-top: 10px;
  margin-right: 8px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

/* TERMS PAGE */
.terms-container {
  display: flex;
  justify-content: center;
  padding: 40px 20px 80px;
}

.terms-card {
  background: #121212;
  max-width: 900px;
  padding: 40px;
  border-radius: 20px;
}

.terms-card h3 {
  color: #d4af37;
  margin-top: 25px;
}

.terms-card p {
  line-height: 1.7;
  opacity: 0.85;
}
/* CONTACT PAGE */
.contact-page {
  display: flex;
  justify-content: center;
  padding: 40px 20px 80px;
}

.contact-card {
  background: #121212;
  padding: 40px;
  border-radius: 22px;
  width: 100%;
  max-width: 600px;
}

.contact-card h3 {
  color: #d4af37;
  margin-bottom: 30px;
  text-align: center;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: #d4af37;
}

.contact-item a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
}

.contact-item a:hover {
  opacity: 1;
}
.map-box iframe {
  width: 100%;
  height: 280px;
  border: none;
  border-radius: 16px;
  margin-top: 30px;
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  font-size: 26px;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  z-index: 999;
}
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  background: #0b0b0b;
  border: none;
  border-radius: 10px;
  color: white;
}

.enquiry-form textarea {
  min-height: 90px;
}

.enquiry-form button {
  margin-top: 15px;
  width: 100%;
}
/* FOOTER */
.site-footer {
  background: #000000;
  padding: 60px 40px 30px;
  color: rgb(247, 202, 79);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* LOGO */
.footer-logo img {
  width: 160px;
  margin-bottom: 10px;
}

.footer-logo p {
  color: #000000;
  font-weight: bold;
}

/* LINKS */
.footer-links h4,
.footer-social h4 {
  color: #fec54a;
  margin-bottom: 15px;
}

.footer-links a,
.footer-social a {
  display: block;
  color: rgb(255, 255, 255);
  text-decoration: none;
  opacity: 0.7;
  margin-bottom: 8px;
}

.footer-links a:hover,
.footer-social a:hover {
  opacity: 1;
}

/* HR */
.site-footer hr {
  border: none;
  border-top: 1px solid #d0a444;
  margin: 40px 0 20px;
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
}
/* CONTACT INFO CARDS */
.contact-info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 60px 40px;
  max-width: 1100px;
  margin: auto;
}

.info-card {
  background: #121212;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}

.info-card h4 {
  color: #d4af37;
  margin-bottom: 10px;
}

.info-card p,
.info-card a {
  color: white;
  opacity: 0.85;
  text-decoration: none;
}

/* CONTACT FORM */
.contact-form-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.contact-form-card {
  background: #121212;
  padding: 40px;
  border-radius: 22px;
  width: 100%;
  max-width: 500px;
}

.contact-form-card h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #d4af37;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: #0b0b0b;
  border: none;
  border-radius: 10px;
  color: white;
}

.contact-form-card textarea {
  min-height: 100px;
}

.contact-form-card button {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: #d4af37;
  color: black;
  font-weight: bold;
  cursor: pointer;
}

/* MAP */
.map-section {
  padding: 60px 20px 80px;
  text-align: center;
}

.map-section h2 {
  color: #d4af37;
  margin-bottom: 30px;
}

.map-box iframe {
  width: 100%;
  max-width: 1000px;
  height: 300px;
  border: none;
  border-radius: 20px;
}
.hero-animate {
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.testimonials {
  padding: 80px 20px;
  text-align: center;
}

.testimonials h2 {
  color: #d4af37;
  margin-bottom: 40px;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.testimonial {
  background: #121212;
  padding: 30px;
  border-radius: 20px;
  font-style: italic;
}

.testimonial span {
  display: block;
  margin-top: 15px;
  color: #d4af37;
  font-size: 14px;
}
/* FAQ SECTION */
.faq {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
}

.faq h2 {
  text-align: center;
  color: #d4af37;
  margin-bottom: 40px;
}

.faq-item {
  background: #121212;
  padding: 25px;
  border-radius: 16px;
  margin-bottom: 20px;
}

.faq-item h4 {
  margin-bottom: 10px;
}
html {
  scroll-behavior: smooth;
}
.top nav a {
  position: relative;
}

.top nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.top nav a:hover::after {
  width: 100%;
}
.top {
  animation: navFade 1s ease forwards;
}

@keyframes navFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.top nav a.active {
  color: #d4af37;
}
.top nav a:hover {
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}
.top {
  position: sticky;
  top: 0;
  background: #0b0b0b;
  z-index: 999;
}
.top nav a {
  transition: color 0.3s ease, transform 0.3s ease;
}

.top nav a:hover {
  transform: translateY(-2px);
}
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .top nav {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #0b0b0b;
    padding: 20px;
    border-radius: 14px;
    display: none;
    flex-direction: column;
    gap: 15px;
  }

  .top nav.show {
    display: flex;
  }
}
.top {
  transition: transform 0.4s ease;
}
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: #d4af37;
  width: 0%;
  z-index: 1000;
}
body {
  animation: pageFade 0.8s ease;
}

@keyframes pageFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#loader {
  position: fixed;
  inset: 0;
  background: #0b0b0b;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader-logo {
  font-size: 32px;
  letter-spacing: 4px;
  color: #d4af37;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}
:root {
  --bg: #0b0b0b;
  --card: #121212;
  --text: white;
  --gold: #d4af37;
}

body {
  background: var(--bg);
  color: var(--text);
}

.light {
  --bg: #ffffff;
  --card: #f2f2f2;
  --text: #111;
}

.theme-toggle {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--gold);
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
button:hover {
  transform: scale(1.03);
  transition: 0.3s ease;
}
.info-card:hover,
.testimonial:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
}
.page {
  animation: pageSlide 0.6s ease;
}

@keyframes pageSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* LIGHTBOX */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 16px;
}
body {
  cursor: url('images/cursor.png'), auto;
}
img {
  max-width: 100%;
  height: auto;
}
/* BOOKING FORM SECTION */
.booking-section {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}

.booking-form {
  background: #121212;
  padding: 50px;
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  animation: fadeUp 0.8s ease;
}

.booking-form h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #d4af37;
}

/* INPUT GROUP */
.input-group {
  position: relative;
  margin-bottom: 28px;
}

.input-group input {
  width: 100%;
  padding: 14px 14px;
  background: transparent;
  border: 1px solid #333;
  border-radius: 12px;
  color: white;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}

/* DATE INPUT STYLE */
.input-group input[type="date"] {
  color-scheme: dark;
}

/* FILE INPUT */
.input-group input[type="file"] {
  padding: 10px;
}

/* LABEL FLOAT */
.input-group label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
  font-size: 13px;
  pointer-events: none;
  transition: 0.3s ease;
  background: #121212;
  padding: 0 6px;
}

/* FOCUS EFFECT */
.input-group input:focus {
  border-color: #d4af37;
  box-shadow: 0 0 10px rgba(212,175,55,0.3);
}

/* FLOAT LABEL UP */
.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 11px;
  color: #d4af37;
}

/* DATE ROW */
.input-row {
  display: flex;
  gap: 16px;
}

/* SUBMIT BUTTON */
.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

/* NOTE */
.form-note {
  margin-top: 18px;
  font-size: 13px;
  text-align: center;
  opacity: 0.7;
}

/* FORM ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* SUCCESS BOX */
.success-box {
  display: none;
  text-align: center;
  background: #121212;
  padding: 50px;
  border-radius: 24px;
  max-width: 520px;
  margin: 60px auto;
  animation: scaleIn 0.6s ease;
}

.success-box h2 {
  color: #d4af37;
  margin-top: 20px;
}

.success-box p {
  opacity: 0.8;
  margin-top: 10px;
}

/* CHECKMARK */
.checkmark {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  background: #d4af37;
  color: black;
  font-size: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pop 0.6s ease;
}

/* ANIMATIONS */
@keyframes pop {
  0% { transform: scale(0); }
  70% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.footer-social a {
  font-size: 35px;
  color: #d4af37;
  margin-right: 15px;
  transition: 0.3s ease;
  display: inline-flex;
}

.footer-social a:hover {
  transform: translateY(-3px);
  /* color: white; */
}
.footer-social a i {
  pointer-events: none;
}
/* CONFETTI */
.confetti {
  position: fixed;
  top: -10px;
  width: 10px;
  height: 10px;
  animation: fall linear forwards;
  z-index: 9999;
}

@keyframes fall {
  to {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}
/* AGREEMENT OVERLAY */
#agreementOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.6s ease;
}

.agreement-box {
  background: #121212;
  padding: 40px;
  border-radius: 22px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  animation: scaleUp 0.6s ease;
}

.agreement-box h2 {
  color: #d4af37;
  margin-bottom: 20px;
}

.agreement-box p {
  opacity: 0.85;
  margin-bottom: 15px;
}

.agreement-box ul {
  text-align: left;
  margin: 15px auto;
  max-width: 300px;
}

.agreement-box li {
  margin-bottom: 8px;
}

.agreement-box button {
  margin-top: 25px;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: black;
  font-weight: bold;
  cursor: pointer;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from { transform: scale(0.8); }
  to { transform: scale(1); }
}
/* TERMS PAGE BACKGROUND */
.terms-body {
  background: #0b0b0b;
}

/* CENTER WRAPPER */
.terms-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

/* OLD PAPER STYLE */
.terms-paper {
  background: linear-gradient(
    to bottom,
    #ebca5d,
    #ffe7a5
  );
  color: #3b2f1c;
  max-width: 700px;
  padding: 60px 50px;
  border-radius: 6px;
  font-family: "Georgia", serif;
  line-height: 1.8;
  position: relative;

  /* Paper shadow */
  box-shadow:
    0 20px 40px rgba(0,0,0,0.6);

  /* Animation */
  animation: paperReveal 1s ease;
}

/* PAPER EDGES EFFECT */
.terms-paper::before,
.terms-paper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20px;
  background: rgba(0,0,0,0.05);
}

.terms-paper::before {
  left: 0;
}

.terms-paper::after {
  right: 0;
}

/* HEADING */
.terms-paper h1 {
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* END SIGN */
.terms-end {
  text-align: right;
  margin-top: 40px;
  font-style: italic;
}

/* ANIMATION */
@keyframes paperReveal {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* PAPER SCROLL REVEAL */
.reveal-paper {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

.reveal-paper.show {
  opacity: 1;
  transform: translateY(0);
}
/* FOUNDER SIGNATURE */
.founder-sign {
  margin-top: 1px;
  text-align: right;
}

.founder-sign img {
  width: 170px;
  opacity: 0.9;
  transform: rotate(-2deg);
}

.founder-name {
  margin-top: 8px;
  font-weight: bold;
}

.founder-role {
  font-size: 14px;
  opacity: 0.75;
  line-height: 1.4;
}
.founder-sign {
  animation: fadeSign 1.2s ease;
}

@keyframes fadeSign {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* WAX SEAL */
.wax-seal {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top left, #c0392b, #7f1d1d);
  border-radius: 50%;
  color: #fbe9e7;
  font-weight: bold;
  font-family: serif;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.4),
              0 8px 20px rgba(0,0,0,0.5);
  opacity: 0;
  transform: scale(0.6) rotate(-8deg);
  transition: 1s ease;
}

/* SHOW SEAL */
.wax-seal.show {
  opacity: 1;
  transform: scale(1) rotate(-8deg);
}
