/* ==========================================================================
   Critical Fade Transition Styles (shared)
   ========================================================================== */
body {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background: #fff;
  color: #000;
}
body.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
body.page-loading {
  opacity: 0;
}

/* ==========================================================================
   Common Page Styles (About & Contact)
   ========================================================================== */

/* Layout container */
.artist-statement-container {
  display: flex;
  min-height: 100vh;
  width: 100vw;
  position: relative;
}

/* Left section with image */
.left-section {
  flex: 0 0 38.2%;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 38.2vw;
  overflow: hidden;
  z-index: 1;
}

.artist-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Artist title overlay */
.artist-title {
  position: absolute;
  top: 3rem;
  left: 2rem;
  right: 2rem;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: #404040;
  text-transform: uppercase;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.artist-title a {
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.artist-title a:hover {
  opacity: 0.7;
}

/* Right section with content */
.right-section {
  flex: 0 0 61.8%;
  margin-left: 38.2vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 3rem;
  background: #fff;
  overflow-y: auto;
  min-height: 100vh;
}

/* Content styling */
.statement-header {
  color: #E8AE1E;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.statement-content {
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.7;
  color: #000;
  margin-bottom: 2rem;
  text-align: justify;
}

.cookie-text {
  color: #777;
  font-size: 0.9em;
}

/* Privacy panel at bottom of page */
.privacy-panel {
  margin-top: auto;
  padding-top: 2rem;
}

.privacy-panel summary {
  cursor: pointer;
  font-weight: 600;
  color: #E8AE1E;
  list-style: none;
}

.privacy-panel summary::-webkit-details-marker {
  display: none;
}

/* Hide default disclosure marker in Firefox */
.privacy-panel summary::-moz-list-bullet {
  font-size: 0;
}

.privacy-panel .privacy-content {
  margin-top: 0.75rem;
}

.statement-content a {
  color: #E8AE1E;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.statement-content a:hover {
  opacity: 0.7;
}

.statement-content hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid #e0e0e0;
}


/* Navigation and footer */
.back-link {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.back-link a {
  color: #E8AE1E;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.back-link a:hover {
  opacity: 0.7;
}

.copyright-info {
  color: #E8AE1E;
  font-weight: 600;
  font-size: 1rem;
  text-align: right;
  white-space: nowrap;
}

/* Responsive design */
@media (max-width: 768px) and (orientation: portrait) {
  .artist-statement-container {
    flex-direction: column;
  }
  .left-section {
    position: relative;
    width: 100vw;
    height: 60vh;
    left: 0;
    top: 0;
  }
  .right-section {
    margin-left: 0;
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .left-section {
    height: 50vh;
  }
  .right-section {
    padding: 1.5rem;
  }
  .statement-content {
    font-size: 16px;
  }
}

@media (orientation: portrait) {
  .artist-title {
    top: 1.5rem;
    padding-top: 0;
  }
  .artist-title, .artist-title a {
    color: #fff;
  }
}

@media (orientation: portrait) and (max-width: 768px) {
  .artist-title {
    text-align: left;
  }
  
  .statement-header {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .back-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .back-link a {
    margin-top: 0.25rem;
  }
}

@media (orientation: landscape) {
  .back-link {
    position: static;
    bottom: 2rem;
    width: auto;
    background: none;
    z-index: 1000;
    padding-top: 0;
    margin-top: 0;
    box-shadow: none;
  }
} 