body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: black;
  overflow-x: hidden;
}

/* Carousel Navigation Overlay */
.carousel-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  z-index: 20;
  background: transparent;
}

.carousel-nav .nav-logo .logo-text {
  font-family: 'Allura', cursive;
  font-size: 2rem;
  color: white;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.carousel-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.carousel-nav a,
.carousel-nav .dropbtn {
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}

.carousel-nav a:hover,
.carousel-nav .dropbtn:hover {
  color: #00ffd0d6;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: black;
  padding: 1rem 2rem;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: 'Allura', cursive;
  font-size: 2rem;
  color: white;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

header nav a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}

header nav a:hover {
  color: #00ffd0d6;
}

.carousel {
  position: relative;
  width: 100vw;
  height: 385px;
  max-width: none;
  margin: 0;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 385px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-title {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100vw;
  text-align: center;
  transform: translateY(-50%);
  color: #fff;
  font-family: 'Radley', serif;
  font-size: 1.5rem;
  font-weight: 100;
  letter-spacing: 0.15rem;
  z-index: 10;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.photo-types {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.photo-type {
  cursor: pointer;
  text-align: center;
  width: 150px;
  transition: transform 0.1s;
}

.photo-type img {
  width: 150px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.photo-type span {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: white;
  text-align: center;
}

.photo-type:hover {
  transform: scale(1.15);
}

.macro-left img {
  object-fit: cover;
  object-position: left;
}

footer {
  background: black;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

footer a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.5rem;
  vertical-align: middle;
  transition: color 0.2s;
  text-decoration: none;
}

footer a:hover {
  color: #00ffd0d6;
}

.copyright {
  font-family: 'Times New Roman', serif;
  font-size: 1.2rem;
  color: white;
  text-align: center;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: none;
  color: white;
  font-weight: bold;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #222;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 100;
  left: 0;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 1rem;
}

.dropdown-content a:hover {
  background-color: #00ffd0d6;
  color: #222;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  color: #00ffd0d6;
}

.about {
  position: relative;
  width: 70vw;
  max-width: 1100px;
  margin: auto;
}

.about-img {
  width: 70vw;
  max-width: 1100px;
  height: 460px;
  object-fit: cover;
  display: block;
  margin: auto;
}

.about-title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.75rem;
  font-weight: bold;
  z-index: 10;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.about-sections-flex,
.about-contact-section {
  width: 900px;
  margin: auto;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.about-sections-flex {
  width: 900px;
  margin: 2rem auto;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  box-sizing: border-box;
  align-items: flex-start;
}

.about-sections-left {
  flex: 1.3 1 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-sections-right {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* .about-section {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
} */

.about-contact-section {
  width: 900px;
  margin: 2rem auto;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

@media (max-width: 950px) {
  .about-img,
  .about-sections-flex,
  .about-contact-section {
    width: 100vw;
    max-width: 100vw;
  }
  .about-sections-flex {
    flex-direction: column;
    gap: 1.5rem;
    width: 100vw;
    max-width: 100vw;
  }
  .about-sections-left,
  .about-sections-right {
    gap: 1.5rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form button {
  background: #222;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover {
  background: #00ffd0d6;
  color: #222;
}

.award-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
}

.award-name {
  font-weight: bold;
  font-size: 1.1rem;
  display: block;
}

.award-place {
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.2rem;
  display: block;
}

.exhibition-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
}

.exhibition-name {
  font-weight: bold;
  font-size: 1.1rem;
  display: block;
}

.exhibition-location {
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.2rem;
  display: block;
  font-style: italic;
}

.exhibition-date {
  font-size: 0.9rem;
  color: #888;
  margin-top: 0.1rem;
  display: block;
}

.page-title {
  color: #fff;
  text-align: center;
  font-family: 'Radley', serif;
  font-weight: 100;
  font-size: 3rem;
  margin: 2rem 0 1.75rem 0;
  letter-spacing: 0.05em;
  margin-top: 5rem;
}

/* Gallery grid */
.container {
  max-width: 1300px;
  margin: 0 auto;
}

.gallery {
  column-count: 4;
  column-gap: 15px;
  padding: 30px 0;
}

.gallery img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 10px;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Lightbox overlay */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

.lightbox-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
}

.lightbox-content img {
  max-width: 70%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.lightbox img.zoomed {
  transform: scale(2);
  cursor: zoom-out;
}

.lightbox-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 45%;
}

.lightbox-title {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: bold;
}

.lightbox-caption {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.3;
  font-style: italic;
}

.lightbox button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 0;
  transition: transform 0.2s ease;
}

.lightbox .prev:hover {
  transform: translateY(-50%) translateX(-3px) scale(1.3);
}

.lightbox .next:hover {
  transform: translateY(-50%) translateX(3px) scale(1.3);
}

.lightbox .prev { left: 20px; }
.lightbox .next { right: 20px; }