@charset "utf-8";
/* CSS Document */
body {
  margin: 0;
  background: url('../assets/sla_background_teal.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Playfair Display', serif;
  color: #e1be72;
  padding-top: 80px;  /* Adjust to match header height */
  padding-bottom: 50px;  /* Adjust to match footer height */
}

/* HEADER with NAVIGATION */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(16, 16, 15, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
}

.header-wordmark {
  height: 54px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hide-on-load {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}
.show-on-scroll {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


.navbar {
  text-align: center;
/*  background: rgba(16, 16, 15, 0.96);*/
  padding: 1rem 5px;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar li {
  display: inline-block;
  margin: 0 20px;
}

.navbar a {
  text-decoration: none;
  color: #e1be72;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #fff;
}

.navbar-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding-right: 50px;
}

.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: 54px;
}

.social-icon {
  width: 24px;
  height: 24px;
  filter: brightness(1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  filter: brightness(2.5); /* Makes it glow white-ish */
  transform: scale(1.2);
}


/* MAIN WINDOW - SCROLLABLE */


.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.54);
  box-sizing: border-box;
}

/* Logo scales relative to height of the hero */
.hero-logo {
  height: 42vh; /* 20% of the hero section height */
  width: auto;
  margin-bottom: 20px;
}

.hero-wordmark {
  height: 12vh; /* You can tweak this based on aesthetics */
  width: auto;
  margin-top: 20px;
}

.hero-logo,
.hero-wordmark {
  transition: height 0.3s ease;
}

.site-title {
  font-size: 3rem;
  line-height: 1.2;
  margin: 0;
  color: #e1be72;
  letter-spacing: 0.05em;
}

.tagline {
  margin-top: 21px;
  /*margin-bottom: 33px;*/
  font-size: 1rem;
  color: #e1be72;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.portal-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  border: 1px solid #e1be72;
  color: #e1be72;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.1rem;
  transition: background 0.3s, color 0.3s;
}

.portal-button:hover {
  background: #e1be72;
  color: #111;
}




.subnav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.subnav a {
  color: #e1be72;
  text-decoration: none;
  padding: 0 12px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.subnav a:hover,
.subnav a.active {
  color: #f8e6b2;
  border-bottom: 2px solid #f8e6b2;
  cursor: pointer;
}



/* START GALLERY */


.gallery-section {
  text-align: center;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.85);
  min-height: 75vh; /* full screen height */
}

.gallery-container {
  text-align: center;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.85);
  min-height: 100vh;
}

.gallery-section.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease;
}

.gallery-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 0.15em;
  color: #e1be72;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: start;
  grid-auto-flow: dense;
}

.gallery-panel {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-panel.show {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

/* VISUAL ART*/

.art-card {
  display: flex;
  flex-direction: column;
  background: rgba(16, 16, 15, 0.66);
  border-radius: 10px;
  overflow: hidden;
  height: 570px;
  /* justify-content: space-between; */ /* ← remove this line */
}

.art-card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  object-fit: contain;
}


.art-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.15);
}


.art-card.landscape .image-container {
  height: 320px; /* match portrait */
  aspect-ratio: auto; /* disable the previous ratio override */
}

.art-card.landscape {
  grid-column: span 2;
}

.art-card.landscape img {
  object-fit: cover;
  max-height: 100%;
}

.art-card.landscape .image-container img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.art-card.landscape .image-container:hover .zoom-icon {
  transform: scale(0.18);
}


.image-container {
  height: 320px; /* occupies upper portion of art-card */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;	
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fully fills container, centers image */
  display: block;
}

.image-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.image-container::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.image-container:hover::before,
.image-container:hover::after {
  opacity: 1;
}


/* Overlay container */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4); /* optional dark fade */
  transition: opacity 0.3s ease;
}

/* Glowing rune icon */
.zoom-icon {
  width: 64px;
  height: 64px;
  pointer-events: none;
  filter: drop-shadow(0 0 10px #72e5e1) drop-shadow(0 0 20px #72e5e1);
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.image-container:hover .overlay {
  opacity: 1;
}

.image-container:hover img {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}

.image-container:hover .zoom-icon {
  transform: scale(0.3);

}


.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 10, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  position: relative;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.2rem;
  color: #a3dce6; /* Ivy's glowing teal */
  cursor: pointer;
  text-shadow: 0 0 6px rgba(163, 220, 230, 0.6), 0 0 10px rgba(163, 220, 230, 0.4);
  z-index: 1002;
  transition: transform 0.3s ease, color 0.3s ease;
}

.lightbox .close:hover {
  transform: scale(1.2);
  color: #f8e6b2; /* warm golden glow */
  text-shadow: 0 0 10px rgba(248, 230, 178, 0.7), 0 0 14px rgba(248, 230, 178, 0.5);
}

/* Text stays aligned */
.art-info {
  display: flex;
  flex-direction: column;
  padding: 12px 10px;
  flex-grow: 1;
  justify-content: flex-start; /* align text and caption normally */
}

.art-info h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
	
}

.art-info .caption {
  font-size: 0.8rem;
  line-height: 1;
  color: #e1be72;
  max-height: 4.5em; /* Optional: control how much vertical space it can use */
  overflow: visible;
/*  text-overflow: ellipsis;*/
}

.art-info h4,
.art-info .medium,
.art-info .caption {
  margin-top: 0;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}


.medium {
  font-size: 0.85rem;
  color: #ccc;
  padding: 10px 14px;
  margin-bottom: 6px;
}

.caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  /*padding-top: 6px;*/
}

.caption p {
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
  line-height: 1.4;
}

.caption a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 14px; 
  font-size: 0.85rem;
  color: #00AF9E;
  text-decoration: none;
  background-color: transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  /*margin-bottom: 10px;*/
}

/* END Visual Art Section */
/* START Music Section */

.music-section {
  padding: 40px 20px;
  text-align: center;
}

.music-section h3 {
  margin-bottom: 5px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
	
}

.track {
  margin-bottom: 24px;
}

.track-title {
  font-size: 1rem;
  color: #e1be72;
  margin-bottom: 6px;
}

audio {
  width: 80%;
  max-width: 400px;
  height: 32px;
  background-color: #111;
  border-radius: 6px;
  outline: none;
}

.music-link {
  font-size: 0.95rem;
  color: #00AF9E;
  text-decoration: none;
  padding: 10px 14px; 
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.music-link:hover {
  color: #e1be72;
  background-color: rgba(163, 220, 230, 0.1);
  text-decoration: wavy underline #007c70;
  text-decoration-skip-ink: auto;
}

.music-caption {
  font-size: 0.95rem;
  color: #ccc;
  text-align: center;
  max-width: 650px;
  margin: -8px auto 20px auto;
  margin-top: 20px;
}

.subsection {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #e1be72;
  text-align: center;
}

.track.playing {
  border-left: 4px solid #a3dce6;
  background-color: rgba(163, 220, 230, 0.08);
  padding-left: 12px;
  transition: all 0.3s ease;
}

.track.playing .track-title {
  color: #a3dce6;
}

.music-section .social-icons{
	justify-content: center;
	margin-right: 0;
	margin-bottom: 20px;
}

/* END Music Section */

.caption a:hover {
  color: #e1be72;
  background-color: rgba(163, 220, 230, 0.1);
  text-decoration: wavy underline #007c70;
  text-decoration-skip-ink: auto;
}

.gallery-section .subnav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
   padding-bottom: 10px;
}

.gallery-section .subnav a {
  color: #e1be72;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  padding: 6px 12px;
   transition: all 0.3s ease;
}

.gallery-section .subnav a:hover,
.gallery-section .subnav a.active {
  color: #f8e6b2;
  cursor: pointer;
}

/* END GALLERY Section */


/* MOBILE NAVIGATION */

.hamburger {
  display: none;
}

.mobile-menu {
    display: none;
}



@media (max-width: 768px) {

	
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vh;
  max-width: 768px;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
}
	
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
  margin-left: 10px;
  z-index: 1002;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #e1be72; 
  border-radius: 2px;
}
	
.header-wordmark {
  height: 30px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
  transition: transform 0.3s ease, height 0.3s ease;
  padding-right: 50px;
}
.navbar {
  display: none; /* Hide full nav menu */
}
.navbar-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}	

.social-icons {
  position: static;
  display: flex;
  gap: 12px;
}	
	
	
.hero{
		background: rgba(0, 0, 0, 0.42);
	}
	
/* Mobile menu drawer */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: -100%; /* Hide off screen */
  height: 100vh;
  width: 200px;
  background-color: rgba(0, 0, 0, 0.95);
  padding-top: 80px;
  transition: left 0.3s ease;
  z-index: 1001;
}

.mobile-menu.show {
  left: 0; /* Slide in */
}

.mobile-menu ul {
  list-style: none;
  padding: 0 30px;
  margin: 30px 0;
}

.mobile-menu li {
  margin: 20px 0;
}

.mobile-menu a {
  color: #e1be72;
  font-size: 1.2rem;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #007c70; 
 }
}


@media (max-width: 420px) {
	
  header {
    position: fixed;
    width: 100vh;
    max-width: 420px;
  }

  .art-card.landscape {
      grid-column: span 1;
    }


  .hamburger {
    width: 20px;
    height: 18px;
  }


  .header-wordmark {
    max-width: 160px;
    padding-right: 111px;
  }


  .hero{
    max-width: 420px;
	background: rgba(0, 0, 0, 0.42);
  }

  .hero-logo {
    height: auto;
    width: 80%;
    max-width: 80vh;
  }

  .hero-wordmark{
      max-height: 6vh;
  }


}

/* END MOBILE NAVIGATION */

.divider {
  height: 1px;
  width: 90%;
  margin: 20px auto;
  background: #e1be72;
  opacity: 0.5;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  text-align: center;
  padding: 10px;
  background-color: #121212;
  color: #777;
}

