/* ========================================================= */
/*                  GLOBAL STYLES (DESKTOP)                  */
/* ========================================================= */

body {
  margin: 0;
  padding: 0;
  font-family: "Georgia", serif;

  background: linear-gradient(
    180deg,
    #d8c0a3 0%,
    #f3e5d4 40%,
    #fff8ee 100%
  );

  color: #3b2417;
  line-height: 1.7;
  text-align: center;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: 1px;
  color: #3b2417;
  margin: 0 auto;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* ========================================================= */
/*                           HEADER                          */
/* ========================================================= */

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 20px 50px;
  margin: 0 auto;

  background: linear-gradient(
    135deg,
    #fff8ee 0%,
    #e6c8a6 50%,
    #d9b48b 100%
  );

  border-bottom: 4px solid #b88755;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.logo {
  width: 200px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

h1 {
  font-size: 50px;
  font-weight: 800;
  padding-bottom: 12px;
  position: relative;
}

h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #a66a3f, #e6b980, #a66a3f);
  border-radius: 2px;
  box-shadow: 0 3px 7px rgba(0,0,0,0.2);
}

/* ========================================================= */
/*                        HERO BANNER                        */
/* ========================================================= */

.hero-banner {
  background: linear-gradient(
      rgba(59, 36, 23, 0.55),
      rgba(59, 36, 23, 0.55)
    ),
    url("assets/img/h2.jpg");

  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.hero-content {
  max-width: 700px;
  margin: auto;
}

.hero-content h2 {
  font-size: 40px;
  margin-bottom: 12px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 25px;
  line-height: 1.4;
}
.hero-banner {
  background: linear-gradient(
      rgba(59, 36, 23, 0.55),
      rgba(59, 36, 23, 0.55)
    ),
    url("assets/img/h2.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* BRIGHT HERO TEXT FIX */
.hero-content h2 {
  color: #fffdf8 !important;
  text-shadow:
    0 4px 10px rgba(0,0,0,0.65),
    0 0 15px rgba(0,0,0,0.45);
}

.hero-content p {
  color: #fdf7ec !important;
  text-shadow:
    0 3px 6px rgba(0,0,0,0.55),
    0 0 10px rgba(0,0,0,0.35);
}

.hero-btn {
  display: inline-block;
  background: #a66a3f;
  padding: 12px 26px;
  color: white;
  font-size: 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 5px 12px rgba(0,0,0,0.3);
}

.hero-btn:hover {
  background: #3b2417;
  transform: scale(1.05);
}


.hero-btn {
  display: inline-block;
  background: #a66a3f;
  padding: 12px 26px;
  color: white;
  font-size: 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 5px 12px rgba(0,0,0,0.3);
}

.hero-btn:hover {
  background: #3b2417;
  transform: scale(1.05);
}

/* ========================================================= */
/*                        WHY CHOOSE US                      */
/* ========================================================= */

.why-section {
  padding: 80px 40px;
  background: linear-gradient(180deg, #fff8ee 0%, #d9c1a7 100%);
}

.why-section h2 {
  font-size: 40px;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.why-card {
  background: linear-gradient(135deg, #fff8ee, #e6b980);
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  border: 1px solid rgba(230, 185, 128, 0.7);
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.why-icon {
  font-size: 50px;
  margin-bottom: 15px;
  color: #a66a3f;
}

.why-title {
  font-size: 22px;
  margin-bottom: 12px;
}

.why-text {
  font-size: 18px;
  line-height: 1.6;
}

/* ========================================================= */
/*                    STANDARD SECTIONS                      */
/* ========================================================= */

.section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  margin: 40px auto;
  padding: 35px;
  border-radius: 20px;
  max-width: 1100px;
  gap: 40px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.section-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: 0.3s;
}

.section-image img:hover {
  transform: scale(1.04);
}

.section-title {
  font-size: 30px;
  margin-bottom: 14px;
  border-left: 6px solid #e6b980;
  padding-left: 14px;
}

ul li {
  margin: 10px 0;
  padding-left: 25px;
  position: relative;
  font-size: 20px;
  color: #4a2e1e;
}

ul li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: #a66a3f;
}

/* ========================================================= */
/*                        ACCEPT BOX                         */
/* ========================================================= */

.accept-box {
  background: linear-gradient(135deg, #a66a3f, #e6b980);
  text-align: center;
  margin: 60px auto;
  padding: 40px 20px;
  max-width: 750px;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  color: white;
}

.accept-box p {
  margin: 10px 0;
  font-size: 28px;
}

/* ========================================================= */
/*                        CONTACT SECTION                    */
/* ========================================================= */

.contact-section {
  background: linear-gradient(180deg, #fff8ee 0%, #e6b980 100%);
  padding: 80px 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.contact-item {
  background: linear-gradient(135deg, #fff8ee, #d9c1a7);
  padding: 30px 25px;
  border-radius: 20px;
  min-height: 250px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  border: 1px solid rgba(230, 185, 128, 0.7);
  transition: 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.contact-icon {
  font-size: 45px;
  margin-bottom: 10px;
  color: #a66a3f;
}

.contact-label {
  font-size: 22px;
  font-weight: 700;
}

.contact-info {
  font-size: 18px;
  margin-bottom: 20px;
}

.contact-btn {
  display: inline-block;
  background: #a66a3f;
  padding: 12px 20px;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #3b2417;
  transform: scale(1.05);
}

/* ========================================================= */
/*                         RESPONSIVE                        */
/* ========================================================= */

@media (max-width: 900px) {
  .section {
    flex-direction: column;
    padding: 25px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {

  body {
    line-height: 1.45;
  }

  .header {
    padding: 45px 12px 30px;
  }

  .logo {
    width: 145px;
  }

  h1 {
    font-size: 32px;
  }

  /* HERO */
  .hero-banner {
    padding: 55px 15px;
  }

  .hero-content h2 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-btn {
    padding: 10px 20px;
    font-size: 16px;
  }

  /* WHY CHOOSE US */
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 20px;
  }

  /* SECTIONS */
  .section {
    padding: 20px;
    border-radius: 15px;
  }

  .section-title {
    font-size: 22px;
  }

  ul li {
    font-size: 17px;
  }

  /* ACCEPT */
  .accept-box p {
    font-size: 22px;
  }

  /* CONTACT */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-item {
    padding: 20px;
    min-height: 200px;
  }
}
