/* ========== CSS RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #e5e5e5;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
}

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

.section-header h2 {
  font-size: 2.3rem;
  color: #ffffff;
}

.section-header p {
  color: #aaaaaa;
  font-size: 1.1rem;
}

/* ========== HEADER & NAVIGATION ========== */
.site-header {
  background: #000000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  border-bottom: 1px solid #e31b23;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo a {
  font-size: 1.7rem;
  font-weight: 800;
  text-decoration: none;
  color: #e31b23;
  letter-spacing: -0.5px;
}

.logo i {
  color: #e31b23;
  margin-right: 6px;
}

.logo span {
  font-weight: 400;
  color: #ffffff;
}

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

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #e5e5e5;
  transition: 0.2s;
}

.main-nav a:hover, .main-nav a.active {
  color: #e31b23;
}

.order-cta {
  background: #e31b23;
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
}

.order-cta:hover {
  background: #b8151c;
}

.mobile-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 5rem 0 4rem;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom: 2px solid #e31b23;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-tag {
  background: #1a1a1a;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e31b23;
  border: 1px solid #e31b23;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
}

.highlight {
  color: #e31b23;
  border-bottom: 3px solid #e31b23;
}

.hero p {
  font-size: 1.2rem;
  color: #bbbbbb;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn-primary, .btn-outline, .btn-secondary, .btn-order-now {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s;
}

.btn-primary {
  background: #e31b23;
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #b8151c;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid #e31b23;
  color: #e31b23;
  background: transparent;
}

.btn-outline:hover {
  background: #e31b23;
  color: white;
}

.hero-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  font-size: 0.9rem;
  color: #cccccc;
}

.hero-features i {
  margin-right: 8px;
  color: #e31b23;
}

/* ========== PACKAGES PREVIEW (HOME) ========== */
.packages-preview {
  padding: 5rem 0;
  background: #0a0a0a;
}

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

.preview-card {
  background: #111111;
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: 0.25s;
  border: 1px solid #2a2a2a;
}

.preview-card:hover {
  transform: translateY(-5px);
  border-color: #e31b23;
}

.preview-card.featured {
  border-top: 5px solid #e31b23;
  transform: scale(1.02);
}

.card-badge {
  background: #1a1a1a;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #e31b23;
  border: 1px solid #e31b23;
}

.preview-card h3 {
  margin-bottom: 0.5rem;
  color: white;
}

.people {
  color: #e31b23;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.preview-price .old {
  text-decoration: line-through;
  color: #777777;
  font-size: 0.9rem;
  margin-right: 0.7rem;
}

.preview-price strong {
  font-size: 1.5rem;
  color: #e31b23;
}

.btn-small {
  display: inline-block;
  margin-top: 1rem;
  color: #e31b23;
  font-weight: 600;
  text-decoration: none;
}

.center-more {
  text-align: center;
  margin-top: 2rem;
}

.btn-secondary {
  background: #e31b23;
  color: white;
}

.btn-secondary:hover {
  background: #b8151c;
}

/* ========== INGREDIENTS BANNER ========== */
.ingredients-banner {
  background: #000000;
  color: white;
  padding: 4rem 0;
  border-top: 1px solid #e31b23;
  border-bottom: 1px solid #e31b23;
}

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

.ingredients-text ul {
  list-style: none;
  margin-top: 1rem;
}

.ingredients-text li {
  margin: 0.5rem 0;
}

.ingredients-text li i {
  color: #e31b23;
  margin-right: 8px;
}

.ingredients-img {
  background-image: url('https://images.unsplash.com/photo-1579871494447-9811cf80d66c?w=600&h=400&fit=crop');
  background-size: cover;
  border-radius: 28px;
  height: 280px;
  border: 1px solid #e31b23;
}

/* ========== GALLERY TEASER ========== */
.gallery-teaser {
  padding: 5rem 0;
  background: #0a0a0a;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.teaser-item {
  height: 220px;
  background-size: cover;
  border-radius: 20px;
  transition: 0.3s;
  border: 1px solid #2a2a2a;
}

.teaser-item:hover {
  transform: scale(1.02);
  border-color: #e31b23;
}

.btn-outline-dark {
  border: 2px solid #e31b23;
  padding: 0.7rem 1.8rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  color: #e31b23;
  background: transparent;
}

.btn-outline-dark:hover {
  background: #e31b23;
  color: white;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #000000;
  color: #aaaaaa;
  padding-top: 3rem;
  border-top: 2px solid #e31b23;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #e31b23;
}

.social-icons a {
  color: #e5e5e5;
  margin-right: 1rem;
  font-size: 1.2rem;
  transition: 0.2s;
}

.social-icons a:hover {
  color: #e31b23;
}

.footer-col h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer-col ul {
  list-style: none;
}

.footer-col a {
  color: #aaaaaa;
  text-decoration: none;
  line-height: 1.8;
}

.footer-col a:hover {
  color: #e31b23;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid #1a1a1a;
  font-size: 0.8rem;
}

/* ========== PAGES: HERO ========== */
.page-hero {
  background: linear-gradient(100deg, #0a0a0a, #1a1a1a);
  padding: 3rem 0;
  text-align: center;
  border-bottom: 1px solid #e31b23;
}

/* ========== PACKAGES PAGE ========== */
.packages-container {
  margin: 3rem auto;
}

.package-card-full {
  background: #111111;
  border-radius: 32px;
  margin-bottom: 3rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  border: 1px solid #2a2a2a;
}

.package-badge {
  background: #e31b23;
  color: white;
  padding: 0.5rem 1.5rem;
  display: inline-block;
  border-radius: 0 0 20px 0;
  font-weight: bold;
}

.package-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 1rem;
  padding: 2rem;
}

.package-info h2 {
  margin-bottom: 0.5rem;
  color: white;
}

.menu-breakdown ul {
  margin: 1rem 0 1rem 1.2rem;
  line-height: 1.7;
  color: #cccccc;
}

.price-box {
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 20px;
  margin: 1rem 0;
  border-left: 3px solid #e31b23;
}

.original-price {
  text-decoration: line-through;
  display: block;
  color: #888888;
}

.special-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #e31b23;
}

.save-tag {
  background: #e31b2320;
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
  font-weight: bold;
  color: #e31b23;
}

.free-gift {
  margin: 1rem 0;
  font-weight: 600;
  color: #e31b23;
}

.btn-order-now {
  background: #e31b23;
  color: white;
  display: inline-block;
  margin-top: 0.5rem;
}

.btn-order-now:hover {
  background: #b8151c;
}

.package-visual {
  background-size: cover;
  border-radius: 24px;
  border: 1px solid #e31b23;
}

.notice-board {
  text-align: center;
  background: #111111;
  padding: 1.5rem;
  border-radius: 32px;
  border: 1px solid #e31b23;
  color: #cccccc;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  margin: 3rem 0;
}

.info-card {
  background: #111111;
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  border: 1px solid #2a2a2a;
}

.info-card i {
  color: #e31b23;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modern-form {
  background: #111111;
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid #2a2a2a;
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
  color: #e5e5e5;
}

input, select, textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  font-family: inherit;
  background: #1a1a1a;
  color: white;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #e31b23;
}

.btn-large {
  width: 100%;
  text-align: center;
}

/* ========== ORDER PAGE ========== */
.order-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.form-card {
  background: #111111;
  border-radius: 24px;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  border: 1px solid #2a2a2a;
}

.pkg-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  margin-bottom: 0.5rem;
  cursor: pointer;
  background: #1a1a1a;
}

.pkg-option.selected {
  border-color: #e31b23;
  background: #1a1a1a;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #2a2a2a;
  color: #cccccc;
}

.summary-total {
  font-size: 1.3rem;
  font-weight: 800;
  margin-top: 1rem;
  color: #e31b23;
}

.btn-submit-order {
  width: 100%;
  background: #e31b23;
}

.order-sidebar .info-box {
  background: #111111;
  border-radius: 20px;
  padding: 1.2rem;
  margin-bottom: 1.2rem;
  border: 1px solid #2a2a2a;
}

.info-box i {
  color: #e31b23;
}

/* ========== GALLERY MASONRY ========== */
.gallery-filter {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.filter-btn {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  cursor: pointer;
  color: #e5e5e5;
}

.filter-btn.active {
  background: #e31b23;
  color: white;
  border-color: #e31b23;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.3s;
}

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  background: linear-gradient(transparent, black);
  width: 100%;
  padding: 1rem;
  color: white;
  opacity: 0;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .package-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid, .order-grid {
    grid-template-columns: 1fr;
  }
  .teaser-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .container {
    padding: 0 20px;
  }
}
