/* GLOBAL RESET */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: url("../Images/background-texture.png") repeat;
  color: #eee;
  text-shadow: 0 0 4px rgba(0,0,0,0.6);
}

.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO BANNER */
.hero-banner {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin: 30px auto 70px auto;
  border: 2px solid #000;
  box-shadow: 0 0 18px rgba(0,0,0,0.55);
}

.hero-banner img.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* HEADER */
.site-header {
  text-align: center;
  padding: 0 0 50px 0;
}

.tagline {
  margin-top: -5px;
  font-size: 1.2rem;
  color: #ddd;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 22px;
  margin-top: 18px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.btn-primary {
  background: #b87333;
  color: #fff;
}

.btn-secondary {
  background: #444;
  color: #fff;
}

/* SECTION PANELS */
.panel {
  background: rgba(0,0,0,0.15);   /* subtle depth */
  padding: 25px 25px 30px 25px;
  border-radius: 8px;
  margin-bottom: 60px;
  box-shadow: 0 0 10px rgba(0,0,0,0.25); /* soft lift */
}

/* SECTIONS */
.section h2 {
  margin-bottom: 15px;
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0 0 8px rgba(0,0,0,0.7);
}

.section p,
.section li,
.section-grid p,
.section-grid li {
  color: #eee;
  text-shadow: 0 0 4px rgba(0,0,0,0.6);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 40px 0;
  color: #ccc;
  font-size: 0.9rem;
}
