/* GENERAL */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #fafafa;
  color: #000000;
}

header {
  padding: 20px;
  text-align: center;
  background: white;
  border-bottom: 1px solid #ddd;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
}

footer {
  text-align: center;
  padding: 20px;
}

.page-wrapper {
  max-width: 1200px;  /* same as booking/about */
  margin: 0 auto;     /* centers content */
  padding: 0 20px;    /* adds side padding */
}

/* HERO BUTTON */
.button {
  display: inline-block;
  padding: 10px 20px;
  background: black;
  color: white;
  text-decoration: none;
  margin-top: 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; /* make all columns align at the top */
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

/* Columns */
.about-left,
.about-center,
.about-right {
  flex: 1 1 300px;
}

/* Middle column: text on top, image below */
.about-center {
  max-width: 500px;
  text-align: center;
  background: rgba(240, 240, 240, 0.95);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column; /* ensures text is on top, image below */
  gap: 20px; /* space between text and image */
}

/* Images */
.about-left img,
.about-right img,
.about-center img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* MOBILE STACKING */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-left,
  .about-center,
  .about-right {
    max-width: 90%;
    margin-bottom: 20px;
  }
}

/* GALLERY GRID: 4-5 images per row */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns; change to 5 if you prefer */
  gap: 15px; /* space between images */
  padding: 20px;
  justify-content: center;
}


.grid img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  object-fit: cover;
  aspect-ratio: 4/3; /* width : height ratio */
  height: auto;
}

.grid img:hover {
  transform: scale(1.05); /* slightly enlarge */
  box-shadow: 0 10px 20px rgba(0,0,0,0.3); /* subtle shadow */
}
/* RESPONSIVE: adjust number of columns on smaller screens */
@media (max-width: 1200px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .grid {
    grid-template-columns: 1fr;
  }
}



/* LIGHTBOX */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
}

/* FORMS */
.form {
  max-width: 500px;
  margin: 40px auto;
  padding: 20px;
  background: white;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
}

.form button {
  background: black;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
}

/* RESPONSIVE STACKING */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }
  .about-center {
    order: 0;
  }
}
/* HOME PAGE HERO SECTION */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 70vh;
  background: url('../images/landscapes/Sunset-in-eagle-vail.jpg') no-repeat center / cover;
  color: white;
  padding: 20px;
  overflow: hidden;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero .button {
  padding: 12px 25px;
  font-size: 1rem;
}

/* Mobile tweak */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    background-position: center top;
  }
}

body.home {
 background-image: url('images/landscapes/Sunset-in-eagle-vail.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* optional parallax effect */
  color: white; /* make text readable on dark backgrounds */
}
.contact-section h2 {
  text-align: center;
  margin-bottom: 10px;
}

.contact-section p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #333; /* change to whatever you want */
}
.site-footer {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 30px 0;
  background-color: #f5f5f5; /* change to match your site */
}

.site-footer img {
  width: 28px;
  height: 28px;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-footer img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* MOBILE – CLEAN, BALANCED TEXT */
@media (max-width: 768px) {

  body {
    font-size: 17px;
  }

  header h1 {
    font-size: 2.2rem;
  }

  nav a {
    font-size: 1.1rem;
  }

  .hero h2 {
    font-size: 2.3rem;
    line-height: 1.25;
  }

  .hero p {
    font-size: 1.3rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  p {
    font-size: 1.15rem;
  }

  .about-center p {
    font-size: 1.2rem;
  }

  .form label {
    font-size: 1.15rem;
  }

  .form input,
  .form textarea,
  .form select {
    font-size: 1.1rem;
    padding: 14px;
  }

  button,
  .button {
    font-size: 1.1rem;
    padding: 14px 20px;
  }
}

@media (max-width: 768px) {
  nav a {
    padding: 10px 14px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 60vh; /* slightly shorter on mobile */
    background-position: center top;
  }
}
/* GALLERY PAGE */
.gallery-page {
  padding: 60px 5%;
}

.gallery-section {
  margin-bottom: 80px;
}

.gallery-section h2 {
  margin-bottom: 25px;
  font-size: 2rem;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* LIGHTBOX */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
}
.gallery-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 8%;
}

.category-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
  transition: transform 0.25s ease;
}

.category-card:hover {
  transform: translateY(-6px);
}

.category-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.category-card h2 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 2rem;
  text-shadow: 0 4px 10px rgba(0,0,0,0.7);
}
.back-button {
  position: fixed;       /* stays in place even when scrolling */
  bottom: 20px;          /* distance from bottom */
  left: 20px;            /* distance from left */
  padding: 10px 20px;
  background-color: black;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 1000;         /* make sure it’s on top */
}

.back-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}
