/* =======================================================
   🌐 GLOBAL STYLES (Black & White Theme)
   ======================================================= */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #121212;
  color: #f2f2f2;
}

/* Header Section */
header {
  background: #000;
  color: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

header h1 {
  margin: 0;
  font-size: 1.8rem;
  letter-spacing: 1px;
}

#eat{
  color: #ffa200;
}
nav a {
  color: #f2f2f2;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

nav a.active, nav a:hover {
  text-decoration: underline;
  color: #fff;
}

/* =======================================================
   🏠 DASHBOARD / MAIN PAGE
   ======================================================= */
main {
  padding: 40px;
  text-align: center;
}

h2 {
  color: #fff;
  border-bottom: 2px solid #888;
  display: inline-block;
  padding-bottom: 5px;
}

.dashboard .info-cards {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
  color: #fff;

}

.card {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255,255,255,0.1);
  width: 250px;
  transition: 0.3s;
  border: 1px solid #333;
}

.card:hover {
  transform: scale(1.05);
  border-color: #fff;
}

/* Input Fields */
.menu select, input, textarea {
  padding: 10px;
  width: 50%;
  border-radius: 6px;
  border: 1px solid #555;
  background: #222;
  color: #f2f2f2;
  margin-top: 10px;
}

.menu select:focus, input:focus, textarea:focus {
  outline: none;
  border-color: #fff;
}

/* Tables */
table {
  width: 80%;
  margin: 20px auto;
  border-collapse: collapse;
  background: #1a1a1a;
}

table th {
  background-color: #000;
  color: white;
}

table td, table th {
  padding: 12px;
  border: 1px solid #333;
}

/* Bill Box */
.bill {
  background: #1c1c1c;
  width: 50%;
  margin: 20px auto;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(255,255,255,0.1);
}

/* Buttons */
.btn {
  display: inline-block;
  margin-top: 15px;
  background: white;
  color: black;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 8px;
  transition: 0.3s;
  font-weight: 600;
}

.btn:hover {
  transform: scale(1.05);
  background: #f2f2f2;
}

/* Confirm Page */
.confirm-card {
  background: #1b1b1b;
  width: 60%;
  margin: 30px auto;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(255,255,255,0.1);
  text-align: left;
  line-height: 1.8;
}

.pin {
  font-size: 1.3rem;
  color: white;
  font-weight: bold;
}

.note {
  font-style: italic;
  color: #ccc;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background: #000;
  color: #f2f2f2;
  margin-top: 50px;
  border-top: 1px solid #333;
}

/* =======================================================
   🔐 AUTH PAGES (Login / Signup)
   ======================================================= */
/* Dark grey background behind login card */
.auth-body {
  background-color: #1e1e1e;  /* Dark grey background */
  color: #fff;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

/* Center the login box */
.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
}

/* Login box stays black */
.auth-box {
  background-color: #000;  /* Pure black box */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(204, 102, 0, 0.25); /* Dark orange glow */
  text-align: center;
  width: 350px;
}

/* Input fields */
.auth-box input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 6px;
  background: #2c2c2c;
  color: #fff;
}

.auth-box input::placeholder {
  color: #aaa;
}

/* Button styling */
.auth-btn {
  background-color: #cc6600; /* Darker orange */
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  width: 100%;
}

.auth-btn:hover {
  background-color: #e67300; /* Slightly lighter dark orange on hover */
}

/* Signup link */
.alt a {
  color: #cc6600;
  text-decoration: none;
}

.alt a:hover {
  text-decoration: underline;
}

/* Button styling — smaller and centered */
.auth-btn {
  background-color: #cc6600; /* Dark orange */
  color: white;
  border: none;
  padding: 10px 0; /* Compact height */
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  width: 40%;               /* Reduced width */
  display: block;
  margin: 15px auto;        /* Center horizontally */
  font-size: 15px;
}

.auth-btn:hover {
  background-color: #e67300; /* Slightly lighter dark orange */
}

/* Signup link */
.alt {
  text-align: center;
  margin-top: 10px;
}

.alt a {
  color: #cc6600;
  text-decoration: none;
  font-size: 14px;
}

.alt a:hover {
  text-decoration: underline;
}


/* =======================================================
   🏪 SHOP SELECTOR PAGE
   ======================================================= */
/* ===== ONLY FOR SELECT SHOP PAGE ===== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #1b1b1b;
  color: #f4f4f4;
}

.shop-selector {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(180deg, #1b1b1b, #242424);
  min-height: 90vh;
}

.shop-selector h2 {
  color: #ffb400;
  margin-bottom: 40px;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(255, 180, 0, 0.3);
}

/* ===== SHOP GRID ===== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== SHOP CARD ===== */
.shop-card {
  background: #262626;
  border-radius: 14px;
  text-decoration: none;
  color: #f4f4f4;
  padding: 22px 24px;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  border-left: 5px solid #ff7300;
}

.shop-card h3 {
  margin-top: 0;
  color: #ffb400;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}


/* ===== GLOW HOVER EFFECT ===== */
.shop-card:hover {
  transform: translateY(-8px);
  background: #303030;
  box-shadow: 0 0 25px rgba(255, 115, 0, 0.6);
  border-left-color: #ffb400;
}

.shop-card::after {
  content: "→";
  font-size: 18px;
  position: absolute;
  top: 22px;
  right: 24px;
  color: #ffb400;
  opacity: 0;
  transition: 0.3s;
}

.shop-card:hover::after {
  opacity: 1;
  right: 18px;
}

/* ===== FOOTER ===== */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 16px;
  margin-top: 60px;
  font-size: 14px;
  letter-spacing: 0.3px;
  border-top: 1px solid #333;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .shop-selector {
    padding: 40px 15px;
  }
}

/* =======================================================
   🍽 MENU PAGE
   ======================================================= */
.shop-page {
  background: #0f0f0f;
  color: white;
  text-align: center;
  padding: 40px;
}

.menu-table {
  width: 80%;
  margin: 30px auto;
  border-collapse: collapse;
  background: black;
  border-radius: 10px;
  overflow: hidden;
}

.menu-table th, .menu-table td {
  padding: 12px;
  border-bottom: 1px solid #333;
}

.menu-table th {
  background: #000;
  font-size: 1.1rem;
}

.note {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #ccc;
}

/* Order Button */
.order-btn {
  background: white;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  color: black;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s;
}

.order-btn:hover {
  background: #f2f2f2;
  transform: scale(1.05);
}

.shop-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.shop-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


/* =======================================================
   ✅ ORDER CONFIRMATION PAGE
   ======================================================= */
.confirmation-box {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  color: white;
  padding: 40px 30px;
  width: 60%;
  margin: 40px auto;
  box-shadow: 0 8px 25px rgba(255,255,255,0.1);
  border: 1px solid #333;
}

.confirmation-box h2 {
  color: #fff;
  margin-bottom: 10px;
}

.details {
  background: rgba(0,0,0,0.5);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: left;
  font-size: 1.1rem;
}

.details p {
  margin: 10px 0;
}

.note {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #ccc;
}

/* back button */
.back-btn {
  /* background-color: white;
  color: black;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s; */
  background: white;
  border: none;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 10px;
  color: black;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s;
}

.back-btn:hover {
  background-color: #007ACC;
  transform: scale(1.05);
}

/* === Quantity Selector (+ / - Buttons) === */
.quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 5px 10px;
  width: fit-content;
  margin: auto;
  transition: 0.3s ease;
}

.quantity-control button {
  background: none;
  border: none;
  color: black;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  transition: 0.2s ease;
}

.quantity-control button:hover {
  background: #f2f2f2;
  transform: scale(1.1);
}

.quantity-control span {
  font-size: 1rem;
  font-weight: 600;
  color: black;
  min-width: 25px;
  text-align: center;
}

/* === Total Button === */
.order-btn {
  background: white;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  color: black;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 25px;
  transition: 0.3s;
}

.order-btn:hover {
  background: #f2f2f2;
  transform: scale(1.05);
}

/* === ORDER CONFIRMATION TOTAL SECTION === */
.total-section {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  border-radius: 12px;
  margin-top: 25px;
  padding: 15px 20px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.total-section h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #007ACC; /* VS Code accent blue */
}

.total-section p {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

/* payment  */
.payment-box {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 2rem;
  text-align: center;
  max-width: 420px;
  margin: 2rem auto;
}

.payment-amount {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #007f80; /* aqua accent */
}

.qr-section {
  margin-bottom: 1.5rem;
}

.qr-img {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.utr-form {
  margin-bottom: 1.5rem;
}

.utr-form input {
  width: 80%;
  padding: 10px;
  margin-top: 8px;
  border: 2px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  transition: 0.3s;
  background-color: #00c3c3;
}

.utr-form input:focus {
  border-color: #00c3c3;
  outline: none;
  box-shadow: 0 0 5px rgba(0,195,195,0.5);
}

.order-btn {
  background: linear-gradient(135deg, #00c3c3, #007f80);
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.order-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #00e0e0, #00a0a0);
}


/* Shop Portal Layout */
.tab-header {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.tab-btn {
  background: white;
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn:hover {
  background-color: #c9f6f0;
}

.shop-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shop-form input,
.shop-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: 'Poppins', sans-serif;
}

.shop-form label {
  font-weight: 500;
  margin-top: 10px;
  color: #333;
}

.auth-btn {
  background: white;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  color: black;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.auth-btn:hover {
  background-color: #c9f6f0;
}  



/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

/* Background Layer */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), /* soft overlay */
    url(ASSETS/Cafe.webp) center/cover no-repeat;
  filter: blur(6px) brightness(1.1);
  transform: scale(1.1);
  z-index: -1;
  animation: zoomBg 20s ease-in-out infinite alternate;
}

/* Smooth background zoom animation */
@keyframes zoomBg {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.2);
  }
}

/* Content styling */
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.3;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-content span {
  color: #ffb703;
}

.hero-content p {
  margin: 20px 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

#explore-btn {
  background-color: #ffb703;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 183, 3, 0.4);
}

#explore-btn:hover {
  background-color: #ffa200;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 162, 0, 0.6);
}


/* ===============================
   CONTACT PAGE (Same as Login Theme)
   =============================== */

/* ===============================
   CONTACT PAGE (Same as Login Card Style)
   =============================== */

.contact {
  background-color: #1e1e1e; /* Dark grey background */
  color: #fff;
  font-family: "Poppins", sans-serif;
  min-height: 80vh;
  padding: 60px 0;
  text-align: center;
}

/* Page heading and subtext */
.contact h2 {
  font-size: 28px;
  color: #cc6600; /* Dark orange accent */
  margin-bottom: 10px;
}

.contact p {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 40px;
}

/* Contact form card — identical to login box */
.contact-form {
  background-color: #000; /* Pure black card */
  width: 380px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(204, 102, 0, 0.25); /* Dark orange glow */
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px; /* Even spacing between elements */
}

/* Labels — white and larger */
.contact-form label {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 5px;
}

/* Inputs and text area */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #2c2c2c;
  color: #fff;
  font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
  font-size: 13px; /* Slightly smaller placeholder text */
}

/* Send Message button — identical to login button */
.contact-form .auth-btn {
  background-color: #cc6600; /* Dark orange */
  color: white;
  border: none;
  padding: 10px 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  width: 40%;              /* Smaller button */
  display: block;
  margin: 15px auto 0;     /* Centered */
  font-size: 15px;
}

.contact-form .auth-btn:hover {
  background-color: #e67300; /* Slightly lighter dark orange on hover */
}

/* Footer (consistent across pages) */
footer {
  text-align: center;
  padding: 15px;
  background: #000;
  color: #fff;
}

/* orders: back button */
#back-btn {
  /* background-color: white;
  color: black;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s; */
  background: white;
  border: none;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 10px;
  color: black;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s;
}
#back-btn:hover {
  background-color: #007ACC;
  transform: scale(1.05);
}



