/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  overflow-x: hidden;
  color: #fff;
}

/* Add gold border to all images */
img:not(.hero-img) { border: 2pt solid #c8a96a; }

/* =========================
   WRAPPER
========================= */
.wrapper {
  width: 100%;
}

/* =========================
   CURTAIN SECTION
========================= */
.curtain-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

/* Hero image behind curtain */
.hero-image {
  width: 100%;
  max-height: 80vh; /* optional: prevent it from taking the whole screen */
  overflow: hidden;
}

.hero-image img.hero-img {
  width: 100%;
  height: auto;      /* keeps aspect ratio */
  display: block;    /* removes inline spacing issues */
  object-fit: cover; /* ensures it fills container nicely */
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Curtain slices */
.curtain {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 2;
  pointer-events: none;
}

.curtain-slice {
  width: calc(100% / 24);
  height: 100vh;
  background: url('../images/c001.png') no-repeat center center;
  background-size: cover;
  transition: transform 0.3s ease-out;
  will-change: transform;
}

/* =========================
   FIXED HEADER
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 1rem 2rem;
  background: transparent;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-nav a {
  color: white;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.header-nav a:hover {
  opacity: 0.7;
}

.about-images-section {
  padding: 80px 20px;
  background-color: #000;
}

/* Side-by-side layout */
.about-images-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

/* Main two images */
.about-portrait {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Text between images */
.about-text {
  max-width: 350px;
  text-align: center;
  line-height: 1.5;
  font-size: 24px;
  margin: 0 auto;
}

/* =========================
   ABOUT PAGE IMAGES
========================= */

/* Bottom single image section */
.low-res-image-section {
  display: flex;
  justify-content: center;
  margin: 0 auto 30px;
}

.low-res-image-section img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  border-radius: 10px;
  cursor: pointer;
  position: relative;

  /* GPU-accelerated hover effects */
  transform: translateZ(0);
  will-change: transform;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-origin: center;
}

/* Two-image row section */
.about-images-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.about-images-row img {
  flex: 1 1 320px;
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;

  /* GPU-accelerated hover effects */
  transform: translateZ(0);
  will-change: transform;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-origin: center;
  cursor: pointer;
  position: relative;
  border-radius: 10px;
}

/* SINGLE UNIFIED HOVER RULE FOR ALL IMAGES */
.about-images-row img:hover,
.low-res-image-section img:hover {
  transform: scale(1.06);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  z-index: 5;
}

.landscape {
padding-bottom: 20px;
}

/* =========================
   MUSIC INFO SECTION
========================= */
.music-info-section {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
  line-height: 1.6;
}

.music-info-section h2 {
  font-weight: 400;
  margin-bottom: 20px;
}

.music-info-section a {
  color: #fff;
  text-decoration: underline;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 0 10px;
  padding-bottom: 30px;
  font-size: 12pt;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.footer-col p {
  margin: 2px 0;
}

.footer-logo-img {
  max-width: 200px;
  height: auto;
  margin-bottom: 10px;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  color: #c09745;
  display: inline-flex;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-social a:hover {
  color: #a88d4f;
  transform: scale(1.1);
}

/* =========================
   FOOTER LINKS (Phone & Theme Colors)
========================= */
.site-footer a {
  color: #c09745; /* your gold theme color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #a88d4f; /* slightly darker gold for hover */
}

@media (min-width: 769px) {

  .footer-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-col {
    flex: 1;
    text-align: center;
  }

  .footer-logo-img {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {

  .footer-inner {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 20px;
  }

  .a009-img {
    width: 90%;
    max-width: 90%;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .footer-col {
    text-align: center;
  }

  .footer-logo-img {
    margin: 0 auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-legal {
    text-align: center;
  }
}