/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  background: #fffaf5;
  color: #333;
  line-height: 1.7;
  scroll-behavior: smooth;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
header {
  background: linear-gradient(135deg, #ff7b00, #ffb347);
  color: white;
  padding: 30px 0;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

header h1 {
  font-size: 2.8rem;
}

header p {
  font-size: 1.2rem;
  margin-top: 5px;
}

/* ===== NAVIGATION ===== */
nav {
  background: #222;
  box-shadow: 0 3px 5px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  color: white;
  padding: 15px 20px;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}

nav a:hover {
  color: #ff7b00;
}

/* Dropdown for recipes */
.nav-container .dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #333;
  min-width: 180px;
  top: 50px;
  z-index: 100;
  border-radius: 5px;
  overflow: hidden;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: white;
}

.dropdown-content a:hover {
  background: #ff7b00;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ===== HERO SECTION ===== */
.hero {
  background: url('images/aachar-banner.jpg') no-repeat center center/cover;
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.4);
}

.hero h2 {
  position: relative;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  position: relative;
  font-size: 1.2rem;
}

/* ===== CONTENT ===== */
.content {
  padding: 40px 0;
}

.content h2 {
  margin: 30px 0 15px;
  color: #ff7b00;
}

.content ul, .content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* ===== CARD ===== */
.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card h3 {
  margin: 15px 0 10px;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background: #ff7b00;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #e66a00;
}

/* ===== FAQ ACCORDION ===== */
.faq-item {
  margin-bottom: 10px;
  border-left: 4px solid #ff7b00;
  padding-left: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.faq-item:hover {
  background: rgba(255,123,0,0.05);
}

.faq-answer {
  display: none;
  padding: 10px 0 10px 10px;
}

/* ===== FOOTER ===== */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  header h1 { font-size: 2rem; }
  .hero h2 { font-size: 1.8rem; }
  nav a { padding: 10px 12px; }
}
