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

body.home-page {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: url("assets/images/2.jpg") no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* ===============================
   HEADER / NAVBAR
================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(62, 44, 32, 0.95);
  color: #f5e6d3;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

header .logo {
  font-size: 22px;
  font-weight: bold;
  color: #f5e6d3;
}

header nav {
  display: flex;
  gap: 15px;
}

header nav a {
  color: #c19a6b;
  text-decoration: none;
  padding: 8px 15px;
  border: 1px solid #c19a6b;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: bold;
}

header nav a:hover {
  background-color: #eed9b7;
  color: #3e2c20;
}

/* ===============================
   HERO SECTION
================================= */
.get-started-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: #eed9b7; 
    color: rgba(62, 44, 32, 0.95);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.get-started-btn:hover {
    background: #f0cc93;
    transform: translateY(-3px);
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  background: rgba(0, 0, 0, 0.6);
  color: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 15px;
  color: #ffd966;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #f5e6d3;
}

/* ===============================
   ABOUT SECTION
================================= */
.about {
  background-color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.about-container {
  max-width: 900px;
  margin: auto;
}

.about h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #3e2c20;
}

.about p {
  font-size: 18px;
  line-height: 1.8;
  color: #5c4033;
  margin-bottom: 15px;
}

/* ===============================
   FEATURES SECTION
================================= */
.features {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.features h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #3e2c20;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-box {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 40px;
  color: #c19a6b;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #3e2c20;
}

.feature-box p {
  font-size: 16px;
  color: #5c4033;
}

/* ===============================
   CATEGORIES SECTION
================================= */
.categories {
  background-color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.categories h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #3e2c20;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.category-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  font-weight: bold;
  color: #3e2c20;
  transition: 0.3s;
}

.category-card:hover {
  background: #c19a6b;
  color: #fff;
}

/* ===============================
   FOOTER
================================= */
footer {
  background: #3e2c20;
  color: #f5e6d3;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

/* Tablets (<= 992px) */
@media (max-width: 992px) {
  header {
    padding: 15px 30px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .features-container {
    gap: 20px;
  }

  .feature-box {
    width: 45%;
  }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px;
  }

  header nav {
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    height: auto;
    padding: 100px 20px 60px;
  }

  .hero-content {
    padding: 20px;
    max-width: 90%;
  }

  .about,
  .features,
  .categories {
    padding: 60px 15px;
  }

  .feature-box {
    width: 100%;
  }

  .about h2,
  .features h2,
  .categories h2 {
    font-size: 28px;
  }

  .about p,
  .feature-box p {
    font-size: 16px;
  }
}

/* Small phones (<= 480px) */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 15px;
  }

  header .logo {
    font-size: 20px;
  }

  header nav a {
    padding: 6px 10px;
    font-size: 14px;
  }

  .feature-box i {
    font-size: 32px;
  }

  .category-card {
    font-size: 16px;
    padding: 20px;
  }
}
