/* Minimalist Reset and Typography */
body { 
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; 
  margin: 0; 
  padding: 0; 
  color: #333; 
  background-color: #fafafa; 
}

/* Header and Navigation Layout */
header {
  display: flex;
  justify-content: space-between; /* Pushes name to left, nav to right */
  align-items: center;
  padding: 2rem 4rem; /* Adds breathing room around the edges */
  background-color: #fafafa;
}

.logo {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1a1a1a;
}

nav {
  display: flex;
  gap: 2.5rem; /* Space between links */
}

nav a {
  text-decoration: none;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #000;
}

/* Mobile responsiveness: stack them on small screens */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
  }
}
/* Home Page Layout */
.home-layout { 
  display: flex; 
  flex-wrap: wrap;
  height: 65vh; 
  gap: 4rem; 
  padding: 0 2rem; 
  justify-content: center; 
}
.home-link { 
  position: relative; 
  width: 100%;
  max-width: 45%; 
  height: 100%; 
  overflow: hidden; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  text-decoration: none; 
  color: white; 
}
.home-link img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.5s ease; 
}
.home-link:hover img { transform: scale(1.03); }
.home-link h2 { 
  position: absolute; 
  font-size: 2.5rem; 
  font-weight: 300;
  letter-spacing: 3px;
  text-shadow: 0px 4px 10px rgba(0,0,0,0.6); 
}

/* Gallery Grid Layout */
.gallery { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
  gap: 5rem; 
  padding: 0 2rem 4rem 2rem; 
  max-width: 1200px;
  margin: 0 auto;
}
.gallery img { 
  width: 100%; 
  height: 300px; 
  object-fit: cover; 
  cursor: pointer; 
  transition: opacity 0.3s ease; 
}
.gallery img:hover { opacity: 0.7; }

/* Lightbox Effect */
.lightbox { 
  display: none; 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: rgba(255, 255, 255, 0.95); /* White minimal overlay */
  justify-content: center; 
  align-items: center; 
  z-index: 1000; 
}
.lightbox img { 
  max-width: 90vw; 
  max-height: 90vh; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}
.close-btn { 
  position: absolute; 
  top: 30px; 
  right: 40px; 
  color: #333; 
  font-size: 3rem; 
  font-weight: 100;
  cursor: pointer; 
}

/* About Page */
.about-content { 
  max-width: 600px; 
  margin: 2rem auto; 
  text-align: center; 
  line-height: 1.8; 
  padding: 2rem; 
}

/* Puts the image and text side-by-side */
.lightbox-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 85vw;
}

/* Controls the image size */
#lightbox-img {
  max-width: 60vw;
  max-height: 80vh;
  object-fit: contain;
}

/* Styles the text on the right side */
.lightbox-text {
  color: #333;
  max-width: 300px;
  text-align: left;
}

#lightbox-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    margin-top: 40px;
    font-size: 0.8rem;
    color: var(--accent-color);
    border-top: 1px solid #eeeeee;
}
