/* ═══════════════════════════════════════════
   The Fill Inn — Custom Styles
   ═══════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Quicksand', system-ui, sans-serif;
  color: #2d1f2b;
  background: #fffaf5;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Typography ── */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c44f88;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #2d1f2b;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b5060;
  max-width: 500px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn--primary {
  background: #6b2150;
  color: #fff;
  box-shadow: 0 4px 20px rgba(107, 33, 80, 0.35);
}

.btn--primary:hover {
  background: #5a1c44;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107, 33, 80, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ── Navigation ── */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 240, 238, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107, 33, 80, 0.08);
  transition: box-shadow 0.3s ease;
}

.nav-fixed.scrolled {
  box-shadow: 0 4px 30px rgba(107, 33, 80, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #6b2150;
  flex-shrink: 0;
}

.nav-logo svg {
  color: #6b2150;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.menu-link {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #4a3545;
  transition: all 0.25s ease;
}

.menu-link:hover {
  color: #6b2150;
  background: rgba(107, 33, 80, 0.07);
}

.menu-link--cta {
  background: #6b2150;
  color: #fff !important;
  margin-left: 0.5rem;
}

.menu-link--cta:hover {
  background: #5a1c44;
}

/* Mobile menu button */
.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #6b2150;
  transition: background 0.25s ease;
  margin-left: auto;
}

.menu-btn:hover {
  background: rgba(107, 33, 80, 0.08);
}

/* Mobile overlay */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(39, 13, 32, 0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #6b2150 0%, #491738 50%, #38122c 100%);
  overflow: hidden;
  padding: 6rem 0 4rem;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle at 25% 25%, #fbbf24 1px, transparent 1px),
                    radial-gradient(circle at 75% 75%, #fbbf24 1px, transparent 1px);
  background-size: 60px 60px, 40px 40px;
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Floating stat cards */
.hero-stats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.stat-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  animation: float 6s ease-in-out infinite;
}

.stat-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(251, 191, 36, 0.25);
  color: #fbbf24;
  flex-shrink: 0;
}

.stat-card-number {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.2;
}

.stat-card-label {
  display: block;
  font-size: 0.7rem;
  opacity: 0.7;
  line-height: 1.2;
}

.stat-card--top {
  top: 12%;
  right: -2%;
  animation-delay: 0s;
}

.stat-card--mid {
  top: 48%;
  left: -3%;
  animation-delay: -2s;
}

.stat-card--bottom {
  bottom: 10%;
  right: 2%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero-content {
  color: #fff;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fcd34d;
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
  aspect-ratio: 6/7;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fbbf24;
  opacity: 0.2;
  filter: blur(40px);
  bottom: -20px;
  left: -30px;
  pointer-events: none;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  color: #fffaf5;
  pointer-events: none;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ── About ── */
.about {
  padding: 6rem 0;
  background: #fffaf5;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(107, 33, 80, 0.15);
  aspect-ratio: 5/6;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 55%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(107, 33, 80, 0.2);
  border: 4px solid #fffaf5;
  aspect-ratio: 1;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fbbf24;
  opacity: 0.15;
  filter: blur(30px);
  top: -20px;
  right: 30%;
  pointer-events: none;
}

.about-content p {
  color: #5a4050;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.about-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(107, 33, 80, 0.08);
  color: #6b2150;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-title {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: #2d1f2b;
}

.about-feature-desc {
  display: block;
  font-size: 0.85rem;
  color: #7a5a6a;
  margin-top: 0.15rem;
}

/* ── Menu ── */
.menu-section {
  padding: 6rem 0;
  background: #faf0f7;
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #6b5060;
  background: #fff;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(107, 33, 80, 0.06);
}

.menu-tab:hover {
  color: #6b2150;
  border-color: rgba(107, 33, 80, 0.15);
}

.menu-tab.active {
  background: #6b2150;
  color: #fff;
  border-color: #6b2150;
  box-shadow: 0 4px 20px rgba(107, 33, 80, 0.3);
}

.menu-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.menu-panel.active {
  display: block;
}

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

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

.menu-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(107, 33, 80, 0.07);
  transition: all 0.35s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(107, 33, 80, 0.15);
}

.menu-card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.06);
}

.menu-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.menu-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.menu-card-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2d1f2b;
}

.menu-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b2150;
  background: rgba(107, 33, 80, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}

.menu-card-desc {
  font-size: 0.9rem;
  color: #7a5a6a;
  line-height: 1.6;
}

/* ── Gallery ── */
.gallery {
  padding: 6rem 0;
  background: #fffaf5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107, 33, 80, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 20px;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

/* ── Visit ── */
.visit {
  padding: 6rem 0;
  background: linear-gradient(135deg, #6b2150 0%, #491738 100%);
  color: #fff;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.visit-info .section-eyebrow {
  color: #fcd34d;
}

.visit-info .section-title {
  color: #fff;
}

.visit-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.visit-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visit-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.2rem;
}

.visit-detail-value {
  display: block;
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
}

.visit-link {
  color: #fcd34d;
  transition: color 0.25s ease;
}

.visit-link:hover {
  color: #fbbf24;
}

.visit-map {
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ── Contact ── */
.contact {
  padding: 6rem 0;
  background: #faf0f7;
}

.contact-card {
  background: #fff;
  border-radius: 28px;
  padding: 3.5rem;
  box-shadow: 0 12px 48px rgba(107, 33, 80, 0.08);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-content .section-title {
  margin-bottom: 1rem;
}

.contact-desc {
  color: #6b5060;
  font-size: 1rem;
  line-height: 1.7;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b2150;
}

.form-input {
  padding: 0.8rem 1rem;
  border: 2px solid #f0dce9;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #2d1f2b;
  background: #fffaf5;
  transition: all 0.25s ease;
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: #6b2150;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(107, 33, 80, 0.08);
}

.form-input::placeholder {
  color: #b0909e;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b2150' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: rgba(107, 33, 80, 0.06);
  color: #6b2150;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(107, 33, 80, 0.12);
}

.form-success.show {
  display: flex;
}

.form-success svg {
  color: #6b2150;
  flex-shrink: 0;
}

/* ── Footer ── */
.footer {
  background: #270d20;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fbbf24;
  margin-bottom: 1.25rem;
}

.footer-links ul,
.footer-hours ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  gap: 1rem;
}

.footer-hours li span:first-child {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-stats {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-images {
    max-width: 480px;
    margin: 0 auto;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .visit-map {
    min-height: 300px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
  }

  .gallery-item--tall {
    grid-row: span 1;
  }

  .gallery-item--wide {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }

  .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #fffaf5;
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
  }

  .menu.open {
    transform: translateX(0);
  }

  .menu-overlay.active {
    display: block;
  }

  .menu-link {
    padding: 0.875rem 1rem;
    border-radius: 12px;
    font-size: 1rem;
  }

  .menu-link--cta {
    margin-left: 0;
    margin-top: 0.75rem;
    text-align: center;
  }

  .hero {
    padding: 7rem 0 5rem;
    min-height: auto;
  }

  .hero-headline {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 1.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 160px);
  }
}

@media (max-width: 480px) {
  .menu-categories {
    flex-direction: column;
    align-items: center;
  }

  .menu-tab {
    width: 100%;
    justify-content: center;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item {
    aspect-ratio: 4/3;
  }
}
