@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #fff;
  color: #111;
  line-height: 1.6;
}

header.hero {
  min-height: 90vh;
  background: url('about-hero.png') center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: white;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-bottom: 1px solid #eee;
}

.logo {
  height: 40px;
}

.navbar nav {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
}

.nav-current {
  font-weight: bold;
  color: #007B8A;
  cursor: default;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    right: 0;
    top: 100%;
    width: 150px;
    padding: 1rem;
    border: 1px solid #ccc;
  }

  .menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
  
  header.hero {
    justify-content: flex-start;
    padding-top: 80px;
  }
  
  .hero-overlay {
    max-width: 90%;
    padding: 1.5rem;
    margin: 2rem auto;
    align-self: flex-start;
    margin-top: 2rem;
  }
  
  .hero-text h2 {
    font-size: 1.6rem;
  }
  
  .hero-text p {
    font-size: 1.4rem;
  }
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  max-width: 1056px;
  margin: auto;
  border-radius: 8px;
  text-align: center;
  align-self: center;
}

.hero-text {
  text-align: left;
}

.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.section p {
  margin-bottom: 1.5rem;
}

.text-box {
  margin-bottom: 2rem;
}

.photo-placeholder {
  background: #eee;
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #666;
  margin-top: 2rem;
}

/* Footer */
.footer {
  background-color: #f8f8f8;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
  border-top: 1px solid #ddd;
}

.footer-content p {
  margin-bottom: 0.5rem;
}

.footer-content a {
  color: #007B8A;
  text-decoration: none;
}


.photo {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.photo img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

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

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

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 1rem;
  max-width: 800px;
  width: 90%;
  border-radius: 5px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1001;
}

.footer {
  position: relative;
  z-index: 1;
}

.contact-section {
  margin: 60px auto;
  max-width: 700px;
  color: #444;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  padding: 40px 32px 32px 32px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.contact-section p {
  margin-bottom: 18px;
  color: #666;
}

.contact-section a {
  display: block;
  color: #444;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 18px;
  word-break: break-all;
  transition: color 0.2s;
}

.contact-section a:hover {
  color: #007B8A;
  text-decoration: underline;
}

.contact-section a i {
  font-style: italic;
}

.contact-section div {
  margin-bottom: 6px;
  color: #444;
}
