/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(to right, #fff8f0, #fff0f5);
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 16px;
}

/* Hero Image & Text */
.hero-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background-color: #ff3f6c;
  border-bottom: 4px solid #fff;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  background: #ff3f6c;
  color: white;
  text-align: center;
  padding: 25px 15px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.hero-text p {
  font-size: 1.15rem;
  opacity: 0.95;
  font-weight: 500;
}

/* Layout */
main {
  flex: 1;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

section {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(255, 63, 108, 0.2);
  transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
}

section:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 63, 108, 0.3);
}

section h2 {
  color: #ff3f6c;
  margin-bottom: 18px;
  font-weight: 800;
  border-bottom: 3px solid #ff3f6c;
  padding-bottom: 10px;
  font-size: 1.5rem;
}

/* Stall Buttons */
.shop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.shop-list button {
  background: #ff3f6c;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 32px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(255, 63, 108, 0.5);
  transition: all 0.3s ease;
}

.shop-list button:hover {
  background: #c9274f;
  transform: scale(1.08);
}
/* Back Button */
.back-btn {
  background: #ff3f6c;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin: 0 auto 16px auto;
  box-shadow: 0 5px 14px rgba(255, 63, 108, 0.3);
  transition: all 0.3s ease;
  display: block;
}

.back-btn:hover {
  background-color: #c92e50;
  transform: scale(1.05);
}

/* Category Buttons */
#category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
}

#category-buttons button {
  background: #fff3f6;
  border: 2px solid #ff3f6c;
  color: #ff3f6c;
  padding: 10px 18px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#category-buttons button:hover {
  background: #ff3f6c;
  color: white;
}

/* Menu Items */
#menu-items > div {
  background: #ffeaf0;
  padding: 16px 20px;
  margin-bottom: 14px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255, 63, 108, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#menu-items button {
  background: #ff6e90;
  border: none;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

#menu-items button:hover {
  background: #c74767;
}

#menu-items button.added {
  background: #aaa;
  cursor: not-allowed;
}

/* Form Inputs */
.input-group {
  margin: 16px 0;
}

.input-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.input-group input,
#hostel-select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 30px;
  border: 2px solid #ff3f6c;
  font-size: 1.05rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.input-group input:focus,
#hostel-select:focus {
  outline: none;
  border-color: #d62e5a;
  box-shadow: 0 0 6px #ff3f6c;
}

/* Cart */
#cart {
  grid-column: span 2;
}

#cart-items {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  max-height: 240px;
  overflow-y: auto;
}

#cart-items li {
  background: #ffd8e0;
  padding: 14px 18px;
  margin-bottom: 10px;
  border-radius: 12px;
  color: #600025;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(255, 63, 108, 0.3);
}

.order-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.25rem;
  background: #ff3f6c;
  color: #fff;
  border: none;
  border-radius: 45px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 63, 108, 0.45);
  transition: 0.3s ease;
}

.order-btn:hover {
  background: #d62e5a;
  transform: scale(1.04);
}

/* Footer */
footer {
  background: #ff3f6c;
  color: white;
  text-align: center;
  padding: 24px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

footer img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
  transition: transform 0.3s ease;
}

footer img:hover {
  transform: scale(1.12);
}
footer .insta-icon img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

footer .insta-icon img:hover {
  transform: scale(1.2);
}


/* Responsive */
@media (max-width: 768px) {
  main {
    display: block;
  }
  #cart {
    grid-column: unset;
  }
}
/* Center Google Login Section */
#login-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}



