* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Google Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  padding: 1rem 0;
  backdrop-filter: blur(10px);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

nav a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  position: relative;
}

nav a:hover {
  color: #ffd700;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: #ffd700;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav a:hover::after {
  width: 100%;
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/back.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgb(213, 208, 214);
  padding-top: 80px;
  gap: 1.5rem;
}

.accent {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(135, 135, 135, 0.634);
  margin-bottom: 0;
}
.accent2 {
  font-size: 1rem;
  color: #ddd;
  text-shadow: 1px 1px 3px rgba(135, 135, 135, 0.634);
}

#gallery, #about, #contact {
  max-width: 1200px;
  margin: 5rem auto 3rem;
  padding: 0 2rem;
}

#gallery h2, #about h2, #contact h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #222;
  position: relative;
}

#gallery h2::after, #about h2::after, #contact h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  margin: 1rem auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery img:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

#about p {
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  color: #555;
  line-height: 1.8;
}

.contact {
  background: linear-gradient(135deg, #f5f7fa00 0%, #c3cfe200 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.contact p {
  font-size: 1.3rem;
  color: #444;
  margin-top: 1rem;
}

footer {
  background: #111;
  color: #c5c5c5;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(255,255,255,0.3);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #ffd700;
}

@media (max-width: 768px) {
  .accent {
    font-size: 2.5rem;
  }
  
  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  #gallery, #about, #contact {
    margin: 3rem auto 2rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .accent {
    font-size: 2rem;
  }
  
  nav ul {
    gap: 0.5rem;
  }
  
  nav a {
    font-size: 1rem;
  }
  
  .gallery img {
    height: 200px;
  }
}

