/* Colorado Demo - Style.css */

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f7f7;
  color: #222;
}

.header {
  position: relative;
  overflow: hidden;
}

/* Faded background image behind logo */
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/header-bg.jpg'); /* replace with your image */
  background-size: cover;
  background-position: center;
  opacity: 0.70;
  z-index: 1;
}

/* Keep logo above fade */
.header img.logo {
  position: relative;
  z-index: 2;
}

/* Existing header styles */
.header {
  text-align: center;
  padding: 30px 0;
  background: #ffffff;
  border-bottom: 2px solid #eee;
}

.logo {
  max-width: 500px;
  height: auto;
}

.intro {
  text-align: center;
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.intro h1 {
  color: #333;
  font-size: 28px;
  letter-spacing: 1px;
}

.intro p {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
}

/* WHY SECTION */
.why {
  max-width: 850px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.why h2 {
  color: #d97a1c;
  font-size: 26px;
  margin-bottom: 20px;
}

.why ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why li {
  margin: 10px 0;
  font-size: 17px;
  color: #333;
}

/* GALLERY */
.gallery {
  text-align: center;
  margin: 50px auto;
  padding: 0 20px;
  max-width: 1000px;
}

.gallery h2 {
  font-size: 26px;
  margin-bottom: 25px;
  color: #333;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.grid img {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  border: 3px solid #eee;
  transition: 0.2s;
}

.grid img:hover {
  transform: scale(1.03);
  border-color: #d97a1c;
}

/* LIGHTBOX */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.overlay-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 6px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  margin-top: 60px;
  border-top: 2px solid #eee;
}

.footer p {
  margin: 8px 0;
  font-size: 18px;
  color: #333;
}

.footer a {
  color: #d97a1c;
  text-decoration: none;
  font-weight: bold;
}

.footer a:hover {
  text-decoration: underline;
}


/* Responsive logo size */
@media (max-width: 600px) {
  .logo {
    max-width: 250px;
  }
}
