@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

iframe {
  margin: 0 auto;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
  color: #5c3d1f;
  line-height: 1.6;
}

.heading-font {
  font-family: 'Playfair Display', serif;
}

/* Navigation */
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d97706;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(92, 61, 31, 0.15);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 60;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #5c3d1f;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: #fff5e6;
  color: #d97706;
}

.nav-dropdown-menu .nav-dropdown-divider {
  height: 1px;
  background: #ffe8cc;
  margin: 6px 0;
}

body.menu-open {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}

#mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: linear-gradient(180deg, #fff5e6 0%, #ffffff 100%);
}

#mobile-menu.is-open {
    display: flex;
    flex-direction: column;
}

#mobile-menu .mobile-menu-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (min-width: 768px) {
    #mobile-menu {
        display: none !important;
    }
}

.mobile-nav-link {
  display: block;
  padding: 14px 0;
  color: #5c3d1f;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border-bottom: 1px solid #ffe8cc;
}

.mobile-nav-link:hover {
  color: #d97706;
}

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  color: #5c3d1f;
  font-weight: 600;
  font-size: 1.05rem;
  background: none;
  border: none;
  border-bottom: 1px solid #ffe8cc;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}

.mobile-nav-toggle:hover {
  color: #d97706;
}

.mobile-nav-toggle i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.mobile-nav-toggle.active i {
  transform: rotate(180deg);
}

.mobile-nav-submenu {
  padding: 4px 0 8px 12px;
  border-bottom: 1px solid #ffe8cc;
}

.mobile-nav-submenu a {
  display: block;
  padding: 10px 0;
  color: #5c3d1f;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.mobile-nav-submenu a:hover {
  color: #d97706;
}

.mobile-nav-submenu .submenu-label {
  display: block;
  padding: 8px 0 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #d97706;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Cards & Layout */
.content-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(92, 61, 31, 0.1);
  margin-bottom: 30px;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(92, 61, 31, 0.1);
}

.recipe-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(92, 61, 31, 0.1);
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(217, 119, 6, 0.2);
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #d97706, transparent);
  margin: 60px 0;
}

.section-title {
  color: #d97706;
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Links */
.cross-link {
  color: #d97706;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.cross-link:hover {
  border-bottom-color: #d97706;
}

/* Homepage */
.hero-gradient {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #fbbf24 100%);
}

.feature-badge {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

.recipe-tag {
  background: #ffe8cc;
  color: #d97706;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.hero-topic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.hero-topic-btn {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: nowrap;
}

.hero-topic-btn:nth-child(5) {
  grid-column: 1 / -1;
}

.hero-topic-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .hero-topic-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .hero-topic-btn:nth-child(5) {
    grid-column: auto;
  }
}

/* Contact Form */
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ffe8cc;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fff5e6;
}

.form-input:focus {
  outline: none;
  border-color: #d97706;
  background: white;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(217, 119, 6, 0.3);
}
