
/* === Global Styles === */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
h1, h2, h3 {
  font-weight: 700;
  color: #222;
}
section {
  padding: 60px 0;
}
a {
  text-decoration: none;
  color: #d94f1a;
}
.btn-primary {
  display: inline-block;
  background: #d94f1a;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
}

/* === Hero Section === */
.hero-section {
  background: url('../img/hero.webp') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 120px 20px;
}
.hero-section h1 {
  font-size: 3em;
  margin-bottom: 10px;
}
.hero-section p {
  font-size: 1.3em;
  margin-bottom: 20px;
}

/* === Categories Grid === */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.category-tile {
  text-align: center;
  background: #f3f3f3;
  padding: 15px;
  border-radius: 10px;
}
.category-tile img {
  max-width: 100%;
  border-radius: 5px;
}
.category-tile span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

/* === Blog Grid === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.blog-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
  background: white;
}
.blog-card img {
  width: 100%;
  border-radius: 5px;
}
.blog-card h3 {
  margin: 10px 0;
}
.blog-card p {
  font-size: 0.9em;
}
.read-more {
  margin-top: 10px;
  display: inline-block;
}

/* === Guide Section === */
.guide-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.guide-item {
  text-align: center;
}
.guide-item img {
  width: 60px;
  margin-bottom: 10px;
}

/* === Gallery === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 10px;
}

/* === Testimonials === */
.testimonials-slider {
  display: flex;
  overflow-x: auto;
  gap: 30px;
}
.testimonial-item {
  flex: 0 0 300px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
}
.testimonial-item .author {
  margin-top: 10px;
  font-weight: bold;
}

/* === Subscribe === */
.subscribe-section form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.subscribe-section input[type=email] {
  padding: 10px;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
