@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #C8102E;
  --secondary: #1A1A1A;
  --white: #FFFFFF;
  --light: #FDF8F8;
  --light-gray: #F5F5F5;
  --script-font: 'Dancing Script', cursive;
  --body-font: 'Poppins', sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--secondary);
  background: var(--white);
  line-height: 1.6;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 1000;
  padding: 0.7rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 58px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
  transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #fff 0%, #fdf0f2 60%, #fce8eb 100%);
  padding: 7rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,16,46,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,16,46,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: 190px;
  height: auto;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.12));
}

.hero h1 {
  font-family: var(--script-font);
  font-size: 3.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease 0.2s both;
  line-height: 1.2;
}

.hero p {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* ========== BUTTONS ========== */
.btn-primary {
  background: var(--primary);
  color: white;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 50px;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,16,46,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  padding: 0.85rem 2rem;
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-white {
  background: white;
  color: var(--primary);
  padding: 0.85rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ========== SECTION SHARED ========== */
section {
  padding: 5rem 2rem;
}

.section-title {
  font-family: var(--script-font);
  font-size: 2.8rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: #888;
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

.divider {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

/* ========== FLAVOR OF THE DAY ========== */
.flavor-section {
  background: var(--secondary);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.flavor-section .section-title {
  color: white;
}

.flavor-card {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 2rem 3.5rem;
  border-radius: var(--radius);
  font-size: 1.9rem;
  font-family: var(--script-font);
  margin-top: 1rem;
  box-shadow: 0 8px 30px rgba(200,16,46,0.4);
}

.flavor-coming-soon {
  font-size: 0.9rem;
  font-family: var(--body-font);
  opacity: 0.85;
  margin-top: 0.5rem;
}

/* ========== FEATURED MENU PREVIEW ========== */
.featured-section {
  background: var(--light);
}

.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}

.menu-preview-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.menu-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.menu-preview-card .icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.menu-preview-card h3 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary);
}

.menu-preview-card p {
  font-size: 0.82rem;
  color: #999;
  margin-top: 0.4rem;
}

/* ========== CATERING ========== */
.catering-section {
  background: white;
  text-align: center;
}

.catering-content {
  max-width: 580px;
  margin: 0 auto;
}

.catering-content p {
  color: #666;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.coming-soon-badge {
  display: inline-block;
  background: #f0f0f0;
  color: #aaa;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ========== ONLINE ORDER ========== */
.order-section {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 5rem 2rem;
}

.order-section .section-title {
  color: white;
}

.order-section p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ========== FOOTER ========== */
footer {
  background: var(--secondary);
  color: white;
  padding: 3.5rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1050px;
  margin: 0 auto;
}

.footer-col h4 {
  font-family: var(--script-font);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  line-height: 2;
  text-decoration: none;
  display: block;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-logo {
  width: 90px;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 50%;
}

.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background 0.3s, color 0.3s;
}

.social-link:hover {
  background: var(--primary) !important;
  color: white !important;
}

.footer-bottom {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #2a2a2a 100%);
  color: white;
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--script-font);
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
}

/* ========== MENU PAGE ========== */
.menu-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.menu-section {
  margin-bottom: 3.5rem;
}

.menu-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.menu-section-header h2 {
  font-family: var(--script-font);
  font-size: 2.1rem;
  color: var(--primary);
}

.menu-divider {
  height: 2px;
  background: linear-gradient(to right, var(--primary), rgba(200,16,46,0.08));
  margin-bottom: 1.25rem;
  border-radius: 2px;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 0.65rem;
}

.menu-item {
  background: var(--light);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--secondary);
  border-left: 3px solid var(--primary);
  transition: background 0.2s;
}

.menu-item:hover {
  background: #fce8eb;
}

/* ========== ABOUT PAGE ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-text h2 {
  font-family: var(--script-font);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-text p {
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.85;
  font-size: 0.97rem;
}

.about-logo {
  text-align: center;
}

.about-logo img {
  width: 280px;
  max-width: 100%;
  border-radius: 50%;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.hours-table tr {
  border-bottom: 1px solid #eee;
}

.hours-table td {
  padding: 0.65rem 0;
  font-size: 0.9rem;
  color: #555;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--secondary);
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 2px solid #eee;
  border-radius: 8px;
  font-family: var(--body-font);
  font-size: 0.93rem;
  transition: border-color 0.3s;
  outline: none;
  color: var(--secondary);
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.contact-info {
  background: var(--light);
  padding: 2rem;
  border-radius: var(--radius);
}

.contact-info h3 {
  font-family: var(--script-font);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.4rem;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.3rem;
  min-width: 28px;
  margin-top: 2px;
}

.info-text strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #aaa;
  margin-bottom: 0.15rem;
}

.info-text span,
.info-text a {
  font-size: 0.93rem;
  color: var(--secondary);
  text-decoration: none;
}

.info-text a:hover {
  color: var(--primary);
}

.map-container {
  margin-top: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}

/* ========== SCROLL REVEAL ========== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== KEYFRAMES ========== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    box-shadow: 0 10px 24px rgba(0,0,0,0.1);
    gap: 1rem;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-logo {
    width: 145px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-logo {
    order: -1;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .menu-items {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }

  .menu-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flavor-card {
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .page-hero h1 {
    font-size: 2.4rem;
  }

  .contact-grid {
    gap: 2rem;
  }
}
