/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f3ed;
  color: #111111;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========================================
   HEADER STYLES
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(240, 138, 36, 0.15);
  padding: 1rem 0;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: rgba(240, 138, 36, 0.3);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 160px;
}

.logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f08a24;
  letter-spacing: 0.5px;
}

/* Navigation */
.nav {
  display: flex;
  gap: 2.5rem;
  margin-left: auto;
}

.nav-link {
  text-decoration: none;
  color: #e0e0e0;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f08a24;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #f08a24;
}

.nav-link:hover::after {
  width: 100%;
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: #f08a24;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(240, 138, 36, 0.1);
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}

.menu-overlay.active {
  display: block;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, #050505 0%, #1a0f05 50%, #050505 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(240, 138, 36, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.hero-wrapper {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #ffffff;
  line-height: 1.8;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: #f08a24;
  color: #0a0a0a;
  box-shadow: 0 10px 30px rgba(240, 138, 36, 0.2);
}

.btn-primary:hover {
  background: #ff9d3d;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(240, 138, 36, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #f08a24;
  border: 2px solid #f08a24;
}

.btn-secondary:hover {
  background: rgba(240, 138, 36, 0.1);
  transform: translateY(-2px);
}

/* Hero Image */
.hero-image {
  position: relative;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(240, 138, 36, 0.15) 0%,
    transparent 50%
  );
  z-index: 1;
  pointer-events: none;
}

/* ========================================
   RECIPES SECTION
   ======================================== */
.recipes {
  padding: 6rem 1.5rem;
  background: #ffffff;
  position: relative;
}

.recipes-container {
  max-width: 1200px;
  margin: 0 auto;
}

.recipes-header {
  text-align: center;
  margin-bottom: 4rem;
}

.recipes-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  color: #0a0a0a;
}

.recipes-subtitle {
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
  color: #0a0a0a;
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-showcase {
  padding: 6rem 1.5rem;
  background: #ffffff;
}

.menu-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 3rem;
}

.slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.slider-header h3 {
  font-size: 1.6rem;
  color: #111111;
}

.slider-header p {
  color: #555555;
  max-width: 500px;
}

.slider-controls {
  display: flex;
  gap: 0.75rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(240, 138, 36, 0.25);
  background: #ffffff;
  color: #f08a24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.slider-btn:hover {
  background: rgba(240, 138, 36, 0.16);
  transform: translateY(-1px);
}

.menu-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.menu-slider::-webkit-scrollbar {
  height: 8px;
}

.menu-slider::-webkit-scrollbar-thumb {
  background: rgba(240, 138, 36, 0.35);
  border-radius: 999px;
}

.slider-card {
  min-width: 320px;
  max-width: 340px;
  flex: 0 0 auto;
  background: #ffffff;
  border: 1px solid rgba(240, 138, 36, 0.18);
  border-radius: 24px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.slider-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 138, 36, 0.4);
}

.slider-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.slider-card-content {
  padding: 1.25rem;
}

.slider-card-content span {
  display: inline-block;
  color: #f08a24;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.slider-card-content h4 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  color: #111111;
}

.slider-card-content p {
  color: #555555;
  line-height: 1.8;
}

/* Recipe Card */
.recipe-card {
  background: #ffffff;
  border: 1px solid rgba(240, 138, 36, 0.18);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.recipe-card:hover {
  border-color: rgba(240, 138, 36, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(240, 138, 36, 0.12);
}

.recipe-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(240, 138, 36, 0.08),
    rgba(255, 255, 255, 0.6)
  );
}

.recipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.recipe-card:hover .recipe-image img {
  transform: scale(1.08);
}

.recipe-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #f08a24;
  color: #111111;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.recipe-content {
  padding: 1.5rem;
}

.recipe-name {
  font-size: 1.35rem;
  color: #111111;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.recipe-description {
  color: #444444;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.recipe-meta {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.prep-time,
.recipe-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #f08a24;
  font-weight: 600;
}

.prep-time i,
.recipe-rating i {
  font-size: 1rem;
}

/* ========================================
   ABOUT US SECTION
   ======================================== */
.about {
  padding: 6rem 1.5rem;
  background: #f8f1e7;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.about-visual:hover img {
  transform: scale(1.05);
}

.about-quote {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(17, 17, 17, 0.75);
  padding: 1.5rem;
  border-radius: 16px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.8;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-label {
  width: fit-content;
  padding: 0.65rem 1rem;
  background: rgba(240, 138, 36, 0.12);
  color: #f08a24;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.about-copy h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  color: #111111;
  line-height: 1.05;
}

.about-copy p {
  color: #555555;
  max-width: 620px;
  line-height: 1.9;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(240, 138, 36, 0.15);
  border-radius: 18px;
  padding: 1.5rem;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 138, 36, 0.4);
  box-shadow: 0 20px 50px rgba(240, 138, 36, 0.08);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  color: #111111;
  font-size: 1.1rem;
}

.feature-card p {
  color: #555555;
  line-height: 1.8;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
  .header-content {
    padding: 0 1rem;
    gap: 1rem;
  }

  .recipes {
    padding: 4rem 1rem;
  }

  .recipes-title {
    font-size: 2rem;
  }

  .recipes-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .recipe-image {
    height: 200px;
  }

  .recipe-content {
    padding: 1.25rem;
  }

  .recipe-name {
    font-size: 1.1rem;
  }

  .recipe-description {
    font-size: 0.9rem;
  }

  .nav {
    display: flex;
    position: fixed;
    top: 100px;
    right: 0;
    width: 100%;
    max-width: 300px;
    height: calc(100vh - 60px);
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    gap: 0.5rem;
    padding: 1rem;
    border-left: 1px solid rgba(240, 138, 36, 0.2);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 98;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: background 0.3s ease;
  }

  .nav-link:hover {
    background: rgba(240, 138, 36, 0.1);
  }

  .nav-link::after {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 4rem 1rem;
    min-height: auto;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-visual {
    min-height: 420px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: 350px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero::before {
    width: 300px;
    height: 300px;
    top: -30%;
    right: -5%;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 0 0.75rem;
  }

  .logo-text {
    display: none;
  }

  .logo-img {
    width: 70px;
    height: 70px;
  }

  .recipes {
    padding: 3rem 0.75rem;
  }

  .recipes-title {
    font-size: 1.5rem;
  }

  .recipes-subtitle {
    font-size: 0.95rem;
  }

  .recipes-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .recipe-image {
    height: 180px;
  }

  .recipe-name {
    font-size: 1rem;
  }

  .recipe-description {
    font-size: 0.85rem;
  }

  .recipe-meta {
    gap: 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-image {
    height: 280px;
    border-radius: 12px;
  }

  .btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero {
    padding: 3rem 0.75rem;
  }

  .about {
    padding: 3rem 0.75rem;
  }

  .about-container {
    gap: 1.5rem;
  }

  .about-visual {
    min-height: 320px;
  }

  .about-copy h2 {
    font-size: 1.8rem;
  }

  .about-features {
    gap: 1rem;
  }

  .menu-slider {
    gap: 1rem;
  }

  .slider-card {
    min-width: 350px;
    max-width: 350px;
  }

  .slider-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .slider-controls {
    width: 100%;
    justify-content: flex-start;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
  }
}

.location-map {
  padding: 6rem 1.5rem;
  background: #ffffff;
}

.location-map-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.location-map-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-map-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  color: #111111;
}

.location-map-copy p {
  color: #555555;
  line-height: 1.9;
  max-width: 520px;
}

.location-map-frame-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.location-map iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.contact-details {
  padding: 4rem 1.5rem;
  background: #f8f1e7;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
  color: #111111;
  line-height: 1.1;
}

.contact-details-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.contact-detail-card {
  background: #ffffff;
  border: 1px solid rgba(240, 138, 36, 0.18);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(240, 138, 36, 0.12);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #fff2e4;
  color: #f08a24;
  font-size: 1.35rem;
}

.contact-detail-card h3 {
  color: #111111;
  font-size: 1.2rem;
}

.contact-detail-card p {
  color: #555555;
  line-height: 1.8;
}

.contact-link {
  color: #111111;
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  color: #f08a24;
}

.contact-social {
  display: flex;
  gap: 0.75rem;
}

.contact-social a {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #ffffff;
  color: #111111;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.contact-social a:hover {
  background: #f08a24;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .location-map-container {
    grid-template-columns: 1fr;
  }

  .contact-details-container {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  padding: 4rem 1.5rem 2rem;
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid rgba(240, 138, 36, 0.18);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
}

.footer-brand p,
.footer-links a,
.footer-contact p {
  line-height: 1.8;
  color: #fff;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #f08a24;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact i {
  color: #f08a24;
  min-width: 20px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  text-align: center;
  color: #777777;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .location-map-container {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    margin-top: 1.5rem;
  }
}
