/* styles.css */
body {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background-color: #e7e7e3;
}

.hero {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-title {
  animation: fadeInUp 1.2s ease-out;
  font-family: 'Cormorant Garamond', serif;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(2.5em, 10vw, 9em);
  color: white;
  font-weight: bold;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, -50%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

.hero nav,
nav {
  background-color: #333;
  color: white;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.hero nav {
  position: absolute;
  top: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.3); /* translucent */
}



.hero nav a, nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero nav a:hover, nav a:hover {
  text-decoration: underline;
}



.content {
  padding: 2em;
}

/* Responsive bio-section */
.bio-section {
  background-color: #e7e7e3;
  display: flex;
  flex-wrap: wrap;
  padding: 3em clamp(1em, 10vw, 10em);
  align-items: center;
  gap: 3em;
}

.bio-text {
  font-family: 'Cormorant Garamond', serif;
  flex: 1;
  min-width: 250px;
  font-size: 1.3em;
  padding: 0;
}

.bio-image {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.bio-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive social section */
.social-section {
  text-align: center;
  background-color: #e7e7e3;
  padding: 2em 1em;
}

.social-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5em;
  margin-bottom: 1em;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
}

.social-button {
  display: inline-block;
  font-size: 1.2em;
  padding: 1em 2.5em;
  border: 1px solid #2c3e50;
  border-radius: 50px;
  text-decoration: none;
  color: #2c3e50;
  font-weight: bold;
  background-color: transparent;
  transition: all 0.3s ease;
}

.social-button:hover {
  background-color: #d1d1ce;
}

/* Responsive contact section */
.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3em clamp(1em, 10vw, 10em);
  background-color: #e7e7e3;
  flex-wrap: wrap;
  gap: 2em;
}

.contact-section-logo {
  flex: 1;
  min-width: 250px;
}

.contact-section-logo h2 {
  font-size: 2.5em;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 0.5em;
}

.contact-section-logo p {
  font-size: 1.2em;
  color: #222;
  line-height: 1.5em;
}

.contact-section-details {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.contact-section-details label {
  font-weight: bold;
  color: #333;
}

.contact-section-details .required {
  font-weight: normal;
  font-size: 0.9em;
  color: #777;
  margin-left: 0.3em;
}

.name-fields {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}

.name-fields input {
  flex: 1;
}

@media (max-width: 480px) {
  .name-fields {
    flex-direction: column;
  }
}


.contact-section-details input,
.contact-section-details textarea {
  padding: 0.8em 1em;
  border: 1px solid #666;
  border-radius: 25px;
  font-size: 1em;
  width: 100%;
}

.contact-section-details textarea {
  resize: vertical;
  height: 120px;
  border-radius: 20px;
}

.contact-section-details button {
  width: fit-content;
  padding: 0.8em 2em;
  font-size: 1.1em;
  border: 1px solid #4a5a6a;
  background-color: white;
  color: #4a5a6a;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.contact-section-details button:hover {
  background-color: #d8d8d8;
}



/* simple contact on the bottom */
.simple-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3em clamp(1em, 10vw, 10em);
  background-color: #e7e7e3;
  flex-wrap: wrap;
}

.contact-logo {
  font-size: 2em;
  font-weight: bold;
  color: #222;
  font-family: 'Cormorant Garamond', serif;
}

.contact-details {
  text-align: right;
  min-width: 200px;
}


/* Responsive gallery grid */
.gallery-grid {
  column-count: 3;
  column-gap: 1.5em;
  padding-top: 1em;
}

.gallery-grid a {
  display: block;
  break-inside: avoid;
  margin-bottom: 1.5em;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-grid {
    column-count: 2;
  }

  .bio-section,
  .simple-contact {
    flex-direction: column;
    align-items: center;
    gap: 2em;
    text-align: center;
  }

  .contact-details {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    column-count: 1;
  }

  .hero-title {
    font-size: 2em;
  }
}

/* Lightbox overlay */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.85);
  width: 100%;
  height: 100%;
  z-index: 9999;
  padding: 1em;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
  margin-bottom: 1em;
  margin: 0 1em 1em;
}

.lightbox-caption {
  color: #fff;
  font-size: 1.1em;
  text-align: center;
  max-width: 80%;
}

.lightbox-close {
  position: absolute;
  top: 1em;
  right: 1.5em;
  font-size: 2.5em;
  color: white;
  cursor: pointer;
  font-weight: bold;
  z-index: 10000;
}



.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2em;
}

.video-wrapper video {
  width: 100%;
  max-width: 800px;
  
}

.video-content {
  font-family: 'Cormorant Garamond', serif;
  padding: 2em;
}


nav a.active {
  text-decoration: underline;
  color: #d1d1ce;
}


/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 1.5em;
  right: 1.5em;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #2c3e50;
  color: #fff;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 1.5em;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

#backToTop:hover {
  background-color: #1a252f;
  transform: scale(1.1);
}

@media (max-width: 480px) {
  #backToTop {
    width: 40px;
    height: 40px;
    font-size: 1.2em;
    bottom: 1em;
    right: 1em;
  }
}


.performance-entry {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  align-items: center;
  margin-top: 2em;
}

.performance-image {
  flex: 1 1 300px;
}

.performance-image img.responsive-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}


.performance-details {
  flex: 2 1 400px;
}





