


:root {
  --color-primary: #5b2c6f;
  --color-primary-light: #7d3c98;
  --color-secondary: #d4af37;
  --color-secondary-light: #f4d03f;
  --color-background: #faf9f7;
  --color-card: #ffffff;
  --color-text: #2c2c2c;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-muted-bg: #f3f4f6;

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;

  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

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

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========================================
   COMPONENTS
   ======================================== */

/* Badge */
.badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  background-color: #d4af37 !important;
}

.badge-primary {
  background-color: rgba(91, 44, 111, 0.1);
  color: var(--color-primary);
}

.badge-secondary {
  background-color: rgba(212, 175, 55, 0.9);
  color: #1a1a1a;
}

.origin-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  color: var(--color-text-muted);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 1rem 0;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1.125rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url("image/dainoihue.jpg") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, var(--color-background) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 800px;
}

.hero-content .badge {
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-content .text-gold {
  color: var(--color-secondary);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-dot {
  width: 0.375rem;
  height: 0.75rem;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 9999px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
  padding: 5rem 1rem;
  background-color: var(--color-muted-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background-color: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(91, 44, 111, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--color-text-muted);
  line-height: 1.6;
}


   INTRODUCTION SECTION
  
.introduction {
  padding: 6rem 1rem;
}

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

@media (min-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.intro-images {
  position: relative;
}

.intro-main-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

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

.intro-small-image {
  display: none;
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 12rem;
  height: 12rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--color-background);
  box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
  .intro-small-image {
    display: block;
  }
}

.intro-small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-content .badge {
  margin-bottom: 1rem;
}

.intro-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.intro-content p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Stats */
.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ========================================
   DISHES SECTION
   ======================================== */
.dishes {
  padding: 6rem 1rem;
  background-color: var(--color-muted-bg);
}

.dishes .container {
  max-width: 1400px;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.dish-card {
  background-color: var(--color-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.dish-card:hover {
  box-shadow: var(--shadow-xl);
}

.dish-card:hover .dish-image img {
  transform: scale(1.05);
}

.dish-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.dish-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-secondary);
  color: #1a1a1a;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
}

.dish-content {
  padding: 1.5rem;
}

.dish-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dish-header h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.dish-content p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ========================================
   CHARACTERISTICS SECTION
   ======================================== */
.characteristics {
  padding: 6rem 1rem;
}

.char-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.char-card {
  padding: 1.5rem;
  background-color: var(--color-card);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.char-card:hover {
  box-shadow: var(--shadow-lg);
}

.char-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.char-icon.red {
  background-color: #fee2e2;
  color: #dc2626;
}

.char-icon.amber {
  background-color: #fef3c7;
  color: #d97706;
}

.char-icon.green {
  background-color: #dcfce7;
  color: #16a34a;
}

.char-icon.purple {
  background-color: #f3e8ff;
  color: #9333ea;
}

.char-card h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.char-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}


   QUOTE SECTION
   
.quote-section {
  padding: 6rem 1rem;
  background-color: var(--color-primary);
  color: white;
  text-align: center;
}

.quote-section .container {
  max-width: 800px;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 1;
  opacity: 0.5;
  margin-bottom: 1rem;
}

.quote-section blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.quote-author {
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    min-height: 500px;
  }

  .stats {
    justify-content: center;
  }

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