/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(to bottom, #fff9f4, #ffece0);
  color: #3e2f27;
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  color: #d45a3d;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #a63a23;
}

/* Header */
header {
  background-color: #ffe8dc;
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6em;
}

.logo img {
  height: 40px;
  display: block;
}

/* Navigation */
nav a {
  margin-left: 1.5em;
  font-weight: 600;
  position: relative;
}

nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #d45a3d;
  transition: width 0.3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 4em 2em;
  background: radial-gradient(circle at top left, #fff0e6, #fff9f4);
  align-items: center;
  justify-content: center;
}

.hero-text {
  flex: 1 1 320px;
  padding: 1em;
}

.hero-text h1 {
  font-size: 2.6em;
  margin-bottom: 0.5em;
  color: #d45a3d;
}

.hero-text p {
  font-size: 1.1em;
  margin-bottom: 1.2em;
  color: #6a4c40;
}

.cta-btn {
  display: inline-block;
  background-color: #d45a3d;
  color: white;
  padding: 1em 2em;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.05em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #b9422b;
  transform: scale(1.05);
}

.hero-img {
  flex: 1 1 300px;
  text-align: center;
}

.hero-img img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Sections */
section {
  max-width: 900px;
  margin: auto;
  padding: 4em 2em;
}

h2 {
  color: #d45a3d;
  font-size: 2em;
  margin-bottom: 1em;
  text-align: center;
}

ul {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.note {
  font-style: italic;
  font-size: 0.95em;
  color: #7a5b4c;
  text-align: center;
  margin-top: 1em;
}

/* Footer */
footer {
  background-color: #ffe8dc;
  text-align: center;
  padding: 2em 1em;
  font-size: 0.95em;
  color: #5a4438;
}

footer a {
  color: #b43b2b;
  font-weight: 600;
}

footer .credit {
  margin-top: 1em;
  font-size: 0.85em;
  color: #947f70;
}

/* WhatsApp Sticky */
.wa-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25D366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.wa-sticky:hover {
  transform: scale(1.08);
}

.wa-sticky img {
  width: 36px;
  height: 36px;
}

/* Form Styling */
form {
  display: flex;
  flex-direction: column;
  gap: 1.3em;
  margin-top: 2em;
}

#form-container {
  max-width: 700px;
  margin: auto;
  padding: 3em 2em;
  background: #fffdfb;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: #5c3b2e;
  font-size: 0.95em;
}

input, select, textarea {
  padding: 0.85em;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-top: 0.4em;
  background: #fffaf8;
  transition: border 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: #d45a3d;
  outline: none;
}

/* Submit Button */
button[type="submit"] {
  background-color: #d45a3d;
  color: white;
  padding: 1em 2em;
  font-size: 1.05em;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #b9422b;
  transform: translateY(-2px);
}

/* CTA Pulse Animation on Hover */
.cta-btn:hover {
  background-color: #b9422b;
  transform: scale(1.05);
  animation: pulse 0.4s ease-in-out forwards;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1.05); }
}

/* Optional: Form Loading Spinner (hidden by default) */
#loading-indicator {
  display: none;
  margin-top: 1em;
  text-align: center;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #eee;
  border-top: 4px solid #d45a3d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Menu Cards Layout */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2em;
  margin-top: 2em;
  padding: 0 1em;
}

.menu-card {
  background: #fffaf8;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.menu-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.menu-card h3 {
  color: #d45a3d;
  margin: 0.8em 0 0.3em;
  font-size: 1.1em;
  text-align: center;
}

.menu-card p {
  font-size: 0.95em;
  color: #6a4c40;
  text-align: center;
  padding: 0 1em 1em;
}

@media (max-width: 480px) {
  .menu-card img {
    height: 140px;
  }

  .hero-text h1 {
    font-size: 2em;
  }

  .hero-img img {
    max-width: 90%;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}
