/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

/* Banner Header */
.banner {
  background: url('images/thedoghouse.jpg') no-repeat center center/cover;
  height: 343px; /* Original image height */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .overlay {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  text-align: center;
  padding: 1rem;
  width: 100%;
}

.banner h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.banner .tagline {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Content Section */
section {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: auto;
}

h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 2rem;
  text-align: center;
}

/* Gallery */
.gallery .photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #2c3e50;
  color: white;
  margin-top: 2rem;
}

/* Lightbox Styles */
.lightbox {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.lightbox img:hover {
  transform: scale(1.02);
}
