* {
  box-sizing: border-box;
}
body{margin:0;font-family:Arial}
/* REMOVE TOP SPACE */
body {
  margin: 0;
  padding: 0;
}
/* REMOVE ALL DEFAULT SPACING */
html, body {
  overflow-x: hidden;
}
/* TOP BAR */
.top-bar {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: #ff5200;
  color: white;

  margin: 0;          /* 🔥 remove gap */
  position: sticky;
  top: 0;
  z-index: 1500;
}
#authSection {
  display: flex;
  gap: 5px;
}
/* 🌑 Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* 💎 Popup Box */
.modern-popup {
  width: 350px;
  padding: 30px;
  border-radius: 20px;
  background: white;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  animation: pop 0.3s ease;
}

/* ✨ Animation */
@keyframes pop {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* 📝 Title */
.modern-popup h2 {
  margin-bottom: 20px;
  color: #28a745;
}

/* 📥 Inputs */
.modern-popup input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}

/* 🚀 Buttons */
.main-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(45deg, #28a745, #34d058);
  border: none;
  color: white;
  border-radius: 25px;
  margin-top: 10px;
  font-size: 16px;
  cursor: pointer;
}

.secondary-btn {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 25px;
  border: none;
  background: #eee;
  cursor: pointer;
}

/* ✨ Hover effects */
.main-btn:hover {
  transform: scale(1.05);
}

.secondary-btn:hover {
  background: #ddd;
}

#authSection button {
  padding: 6px 10px;
  border: none;
  border-radius: 15px;
  background: white;
  cursor: pointer;
}
.top-bar input {
  width: 150px;
  padding: 5px 10px;
  font-size: 13px;
}
/* SIDEBAR */
.sidebar {
  position: fixed;
  left: -260px;
  top: 0;
  width: 250px;
  height: 100vh;

  background: #ffffff; /* clean white */
  color: #222;

  padding: 20px;
  transition: 0.3s ease;

  z-index: 2000;

  box-shadow: 4px 0 20px rgba(0,0,0,0.15);
  border-right: 1px solid #eee;
}
.sidebar.active {
  left: 0;
}
.sidebar h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #111;
  font-weight: bold;
}
.welcome {
  color: #fff;
  font-weight: 600;
  margin-right: 10px;
}
.sidebar button {
  display: flex;
  align-items: center;
  gap: 10px;

  width: 100%;
  margin: 8px 0;
  padding: 12px;

  background: transparent;
  border: none;
  border-radius: 10px;

  color: #333;
  text-align: left;

  font-size: 14px;
  cursor: pointer;

  transition: 0.25s ease;
}
.sidebar button:hover {
  background: #f4f4f4;
  transform: translateX(5px);
}

/* MAIN */
.container, .main {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}
/* MENU */
.menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;

  padding: 20px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
    margin: 10px 0 5px;
}

.card p {
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.card button {
    margin-bottom: 12px;
    padding: 8px 15px;
    border-radius: 20px;
    border: none;
    background: #ff5200;
    color: white;
    cursor: pointer;
}


@media (max-width: 600px) {
    .menu {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* CART */

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* stops horizontal scroll */
}


iframe{width:100%;height:300px;border-radius:10px}

/* Add spacing */
section, h2 {
    margin-top: 30px;
}

body {
    background: #f5f5f5;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;

  padding: 20px 40px;  /* 👈 THIS gives LEFT + RIGHT SPACE */
}

/* CONTACT SECTION */
#contact {
  text-align: center;
  margin-top: 40px;
}
.contact-location {
  background: #d9f0ff;   /* light blue */
  padding: 40px;
}

.contact-location-wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch; /* 🔥 KEY FIX */
  flex-wrap: wrap;
}

/* 🔐 FULL AUTH PAGE FIX */
.auth-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  background: linear-gradient(135deg, #ff5200, #ff914d);
  z-index: 5000;
}

/* AUTH BOX */
.auth-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  width: 300px;

  text-align: center;

  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* INPUTS */
.auth-box input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;

  border-radius: 10px;
  border: 1px solid #ccc;
}

/* BUTTONS */
.auth-box button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;

  border: none;
  border-radius: 25px;

  background: #ff5200;
  color: white;

  cursor: pointer;
  transition: 0.3s;
}

.auth-box button:hover {
  background: #e64900;
}

.box {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;

  display: flex;              
  flex-direction: column;     
  justify-content: space-between;

  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* input styling */
.contact-box input,
.contact-box textarea,
.contact-box select {
  width: 100%;
  padding: 10px;
  margin: 6px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* map small card */
.right-box iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  border: none;
}

/* TITLE */
.section-title {
  text-align: center;
  margin-bottom: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-location-wrapper {
    flex-direction: column;
  }
}


/* GLASS CONTACT */
.contact-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.contact-box {
  width: 100%;
  max-width: 450px;
  padding: 25px;
  border-radius: 15px;
  height: 120;
  /* GLASS EFFECT */
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  flex: 1;                     /* 🔥 fill space */
  justify-content: space-between;

  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.3s;
}

/* HOVER */
.contact-box:hover {
  transform: translateY(-8px) scale(1.02);
}

/* INPUTS */
.contact-box input,
.contact-box textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
}

/* BUTTON */
.contact-box button {
  background: #ff5200;
  color: white;
  padding: 12px;
  margin-top: auto;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.contact-box button:hover {
  background: #e64900;
  transform: scale(1.05);
}

/* POPUP */
.popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: green;
  color: white;
  padding: 15px;
  border-radius: 10px;
  display: none;
  animation: fadeIn 0.5s;
}

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

/* GLOBAL HOVER */
button:hover {
  transform: scale(1.05);
}
/* 🔥 ALL BUTTON HOVER */
button {
  transition: 0.3s;
}
button:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
.highlight {
  border: 2px solid orange;
  transform: scale(1.05);
  transition: 0.3s;
}
/* 🧾 CARD HOVER (STRONG EFFECT) */
.card {
  transition: 0.3s;
  text-align: center;
  display: inline-block;
}
.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* 🖼 IMAGE ZOOM */
.card img {
  transition: 0.3s;
}
.card:hover img {
  transform: scale(1.1);
}

/* 🧭 SIDEBAR BUTTON HOVER */
.sidebar button {
  transition: 0.3s;
}
.sidebar button:hover {
  background: rgba(255,255,255,0.3);
  padding-left: 15px;
}

/* 🔍 SEARCH BAR HOVER */
.top-bar input {
  transition: 0.3s;
}
.top-bar input:hover {
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

/* ✍️ INPUT + TEXTAREA HOVER */
input, textarea {
  transition: 0.3s;
}
input:hover, textarea:hover {
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

/* 📦 CONTAINER HOVER (SUBTLE) */
.container {
  transition: 0.3s;
}
.container:hover {
  transform: scale(1.01);
}
/* CART PANEL */
.cart-panel {
  position: fixed;
  right: -320px;
  top: 0;
  width: 300px;
  height: 100vh;
  background: #fff;
  padding: 15px;
  transition: 0.3s ease;
  box-shadow: -5px 0 20px rgba(0,0,0,0.15);
  z-index: 2000;
  overflow-y: auto;
  
}
.cart-panel.active {
  right: 0;
}

/* TOAST POPUP */
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  display: none;
  z-index: 3000;
  font-size: 14px;
  animation: fade 0.3s ease;
}
.close-cart {
  width: 100%;
  padding: 12px;
  border: none;
  background: #f3f3f3;
  cursor: pointer;
  font-weight: bold;
}



.close-cart:hover {
  background: #e5e5e5;
}
@keyframes fade {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* 🛒 CART PANEL HOVER ITEMS */
.cart-panel button:hover {
  background: red;
  color: white;
}

/* 🔥 FULL BANNER */
.home-banner {
  height: 90vh;
  background: url("../images/banner.png") center/cover no-repeat;
  position: relative;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left: 0;
}

/* CONTENT */
.banner-content {
  position: relative;
  z-index: 1;
  color: white;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  height: 100%;
}

/* TITLE */
.banner-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

/* SUBTEXT */
.banner-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* BUTTON */
.banner-content button {
  padding: 12px 30px;
  background: #ff5200;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER */
.banner-content button:hover {
  transform: scale(1.1);
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .home-banner {
    height: 60vh;
  }

  .banner-content h1 {
    font-size: 28px;
  }
}

/* ABOUT SECTION */

.about-text button {
    background: linear-gradient(135deg, #ff5200, #ff7a00);
    color: white;
    border: none;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 82, 0, 0.25);
}

.about-text button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 82, 0, 0.35);
}


.about-wrapper {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #222;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

/* RIGHT IMAGE */
.about-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-img img {
    width: 100%;
    max-width: 420px;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.about-img img:hover {
    transform: scale(1.03);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .about-img {
        margin-top: 20px;
    }

    .about-img img {
        height: 260px;
    }
}

.hero-content h1 {
  font-size: 38px;
  color: white;

  /* 🔥 GLOW EFFECT */
  text-shadow:
    0 0 10px rgba(255,255,255,0.8),
    0 0 20px rgba(255, 170, 0, 0.8);
}

.hero-content p {
  text-shadow: 0 0 8px rgba(0,0,0,0.5);
}
h1, h2, p {
  margin: 0;
}
/* NAVBAR */
.nav-bar {
  display: flex;
  gap: 20px;
  padding: 12px 20px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-bar a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  transition: 0.3s;
}

.nav-bar a:hover {
  color: #ff5200;
}
.home-banner {
  height: 100vh; /* 🔥 FULL screen height (not 90vh) */
  display: flex;
  align-items: center;   /* vertical center */
  justify-content: center; /* horizontal center */
  text-align: center;
}

html {
  scroll-behavior: smooth;
}
/* TOP BAR LAYOUT */
.top-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #ff5200;
  color: white;
}

/* SEARCH CENTER */
.top-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  background: #ff5200;
  color: white;
}

/* SEARCH */
.search-box {
  position: relative;
  width: 220px;
}

/* PUSH NAV TO RIGHT */
.nav-links {
  margin-left: auto;   /* 👈 IMPORTANT */
  display: flex;
  gap: 15px;
}

/* NAV STYLE */
.nav-links a {
  cursor: pointer;
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.nav-links a:hover {
  color: yellow;
}
.top-bar {
  justify-content: space-between;
}
/* SEARCH BOX WRAPPER */
.search-box {
  position: relative;
  width: 240px;   /* 👈 medium size */
}

/* INPUT */
.search-box input {
  width: 100%;
  padding: 8px 12px 8px 35px; /* space for icon */
  border-radius: 20px;
  border: none;
  outline: none;
  font-size: 14px;
}

/* ICON */
.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #555;
}

/* HOVER EFFECT */
.search-box input:hover {
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

/* FOOTER BASE */
.footer {
  background: linear-gradient(135deg, #aed5e2, #9fcbdf);
  padding: 30px 0;
  margin-top: 0;
  border-top: 1px solid #121111;
  color: #181717;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 40px;
  padding: 20px 60px;

  flex-wrap: nowrap; /* ❌ stops going down */
}
/* FOOTER BOX */
.footer-box {
  flex: 1;
  min-width: 200px;
}

/* FOOTER LINKS */
.footer-box a {
  display: block;
  text-decoration: none;

  color: #0b0b0b;   /* better than white for light pink bg */
  margin: 6px 0;
  font-size: 14px;

  transition: 0.3s;
}

/* HOVER EFFECT */
.footer-box a:hover {
  color: #141011;
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 20px;
  }

  .footer-box {
    width: 100%;
  }
}
/* SOCIAL ICONS HORIZONTAL */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

/* ICON STYLE ONLY */
.social-icons a {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgb(228, 216, 216);
  box-shadow: 0 2px 8px rgba(247, 241, 241, 0.1);

  font-size: 18px;
  transition: 0.3s;
}

/* HOVER EFFECT */
.social-icons a:hover {
  transform: scale(1.1);
}

/* BRAND COLORS */
.whatsapp i { color: #25D366; }
.instagram i {
  background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
  
}
.facebook i { color: #1877F2; }
.youtube i { color: #FF0000; }

/* ICON SIZE FIX */
.social-icons i {
  font-size: 20px;
}
.footer-bottom {
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  color: #0c0c0c;
  border-top: 1px solid #010101;
  margin-top: 20px;
}
/* 🔲 OVERLAY BACKGROUND */
#bookingPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.6);

  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;

  z-index: 3000;
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}
/* 📦 POPUP BOX */
.popup-box {
  background: linear-gradient(135deg, #ffffff, #f0f8ff);
  padding: 30px;
  border-radius: 18px;

  width: 320px;
  text-align: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);

  animation: popUp 0.4s ease;
}

/* 🎉 TITLE */
.popup-box h2 {
  color: #2ecc71;
  margin-bottom: 10px;
}

/* 📄 TEXT */
.popup-box p {
  color: #555;
  font-size: 14px;
  margin: 6px 0;
}

/* 🔘 BUTTON */
.popup-box button {
  margin-top: 15px;
  padding: 10px 25px;

  border: none;
  border-radius: 25px;

  background: #2ecc71;
  color: white;

  cursor: pointer;
  font-weight: bold;

  transition: 0.3s;
}

/* HOVER */
.popup-box button:hover {
  background: #27ae60;
  transform: scale(1.05);
}

/* ✨ ANIMATION */
@keyframes popUp {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;

  color: #141412;
  font-size: 16px;
}

.footer-box p {
  margin: 5px 0;
  font-size: 14px;
  color: #050505;
}

.order-btn {
  width: 100%;
  padding: 12px;
  background: green;
  color: white;
  border: none;
  border-radius: 25px;
  margin-top: 10px;
  cursor: pointer;
}

.order-btn:hover {
  background: darkgreen;
}