/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Times New Roman', serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header Styles */
header {
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  text-align: center;
  margin: 0 auto;
}

.logo-img {
  width: 120px;
  margin: 0 auto 10px;
}

.logo h1 {
  font-size: 2.5rem;
  font-weight: normal;
  letter-spacing: 10px;
  margin: 0;
  text-transform: uppercase;
}

.tagline {
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-top: 5px;
}

.menu-button {
  background: none;
  border: none;
  color: #000;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 8px 12px;
  border: 1px solid #000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.social-icons {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.social-icon {
  margin-left: 10px;
  font-size: 1.2rem;
}

/* Navigation */
.mobile-nav {
  display: none;
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav a {
  font-size: 1rem;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: #666;
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Content Grid Layout */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}

.section {
  margin-bottom: 30px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Brush Script MT', cursive;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-img {
  transition: transform 0.3s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* News Section */
.news-section {
  margin-top: 40px;
}

.news-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.news-item {
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.news-img {
  width: 100%;
  height: auto;
}

.news-content {
  padding: 15px;
  text-align: center;
}

.news-content p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Impressum Styles */
.impressum-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.impressum-container h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  font-weight: normal;
}

.impressum-section {
  margin-bottom: 30px;
}

.impressum-section h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: normal;
}

.impressum-section p {
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Additional Impressum/Privacy Policy Styles */
.impressum-section h3 {
  font-size: 1.3rem;
  margin: 25px 0 15px;
  font-weight: normal;
}

.impressum-section h4 {
  font-size: 1.1rem;
  margin: 20px 0 10px;
  font-weight: normal;
}

.impressum-section a {
  color: #555;
  text-decoration: underline;
}

.impressum-section a:hover {
  color: #000;
}

/* Footer Styles */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #777;
  background-color: #f9f9f9;
  margin-top: 40px;
}

footer a {
  color: #555;
  text-decoration: underline;
}

footer a:hover {
  color: #333;
}

/* Media Queries for Responsive Design */
@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "shows music-videos"
      "coaching about"
      "piano-section notebook-section";
  }
  
  #shows {
    grid-area: shows;
  }
  
  #music-videos {
    grid-area: music-videos;
  }
  
  #coaching {
    grid-area: coaching;
  }
  
  #about {
    grid-area: about;
  }
  
  .piano-section {
    grid-area: piano-section;
  }
  
  .notebook-section {
    grid-area: notebook-section;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .news-items {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .mobile-nav ul {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
}

@media (min-width: 992px) {
  .logo-img {
    width: 150px;
  }
  
  .logo h1 {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  #shows .gallery,
  #about .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item img {
    height: 300px;
    object-fit: cover;
  }
}

@media (min-width: 1200px) {
  .logo h1 {
    font-size: 3.5rem;
  }
  
  .content-grid {
    grid-gap: 30px;
  }
  
  .gallery-item img {
    height: 350px;
  }
}

/* Image Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 80%;
  max-height: 80vh;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: white;
  margin-top: 20px;
  font-size: 1.2rem;
  max-width: 800px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}

/* News Page Styles */
.news-page-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: normal;
  font-family: 'Brush Script MT', cursive;
}

.news-articles {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.news-article {
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.news-article-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.news-article-content {
  padding: 25px;
}

.news-article-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: normal;
}

.news-article-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
  font-style: italic;
}

.news-article-text p {
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Media Queries for News Page */
@media (min-width: 768px) {
  .news-article {
    flex-direction: row;
    align-items: stretch;
  }
  
  .news-article-image {
    flex: 0 0 40%;
  }
  
  .news-article-image img {
    height: 100%;
    object-fit: cover;
  }
  
  .news-article-content {
    flex: 1;
  }
}

/* About Page Styles */
.about-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.about-intro {
  margin-bottom: 40px;
}

.about-intro h2 {
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 20px;
  text-align: center;
}

.skills-list {
  max-width: 600px;
  margin: 0 auto;
}

.skills-list p {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.about-section {
  margin-bottom: 50px;
}

.about-section h2 {
  font-size: 1.8rem;
  font-weight: normal;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.bio-text {
  margin-bottom: 30px;
}

.bio-text p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.bio-text strong {
  font-weight: normal;
  text-decoration: underline;
}

.bio-image {
  margin-bottom: 30px;
}

.about-img {
  max-width: 100%;
  margin-bottom: 10px;
}

.image-caption {
  font-style: italic;
  font-size: 0.9rem;
  color: #666;
}

/* Media queries for About page */
@media (min-width: 768px) {
  .bio-image {
    max-width: 80%;
    margin: 0 auto 40px;
  }
}

/* Coaching Page Styles */
.coaching-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.coaching-image {
  text-align: center;
  margin-bottom: 40px;
}

.coaching-main-img {
  max-width: 100%;
  max-height: 500px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.coaching-content {
  max-width: 800px;
  margin: 0 auto;
}

.language-notice {
  text-align: center;
  font-style: italic;
  margin-bottom: 30px;
  color: #666;
}

.coaching-section {
  margin-bottom: 40px;
}

.coaching-section h2 {
  font-size: 1.8rem;
  font-weight: normal;
  margin-bottom: 20px;
}

.coaching-section p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.language-divider {
  text-align: center;
  margin: 40px 0;
  color: #999;
  font-size: 0.9rem;
}

.coaching-cta {
  margin-top: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-left: 3px solid #ddd;
}

.email-link {
  color: #555;
  text-decoration: underline;
  display: inline-block;
  margin-top: 10px;
}

.email-link:hover {
  color: #000;
}

/* Media Queries for Coaching Page */
@media (min-width: 768px) {
  .coaching-main-img {
    max-height: 600px;
  }
  
  .coaching-section {
    padding: 0 20px;
  }
}

/* Shows Page Styles */
.shows-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.shows-content {
  max-width: 800px;
  margin: 0 auto;
}

.shows-section {
  margin-bottom: 40px;
}

.shows-year {
  font-size: 2.2rem;
  font-weight: normal;
  margin-bottom: 30px;
  text-align: center;
}

.shows-month {
  margin-bottom: 30px;
}

.shows-month h3 {
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}

.show-item {
  display: flex;
  margin-bottom: 20px;
  padding-left: 15px;
}

.show-date {
  flex: 0 0 60px;
  font-weight: bold;
}

.show-details {
  flex: 1;
}

.show-venue {
  margin-bottom: 3px;
}

.show-location {
  color: #666;
  font-style: italic;
}

.shows-divider {
  display: flex;
  align-items: center;
  margin: 50px 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background-color: #ddd;
}

.archive-title {
  font-size: 1.6rem;
  font-weight: normal;
  margin: 0 20px;
  color: #666;
}

.shows-special-note {
  margin: 30px 0;
  padding: 15px;
  background-color: #f9f9f9;
  border-left: 3px solid #ddd;
  font-style: italic;
}

.show-special-note {
  margin: 15px 0 25px 0;
  padding-left: 15px;
  border-left: 3px solid #ddd;
  font-style: italic;
}

/* Media Queries for Shows Page */
@media (min-width: 768px) {
  .show-date {
    flex: 0 0 100px;
  }
  
  .shows-section.archive {
    position: relative;
  }
  
  .shows-section.archive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 1px;
    background-color: #f0f0f0;
    z-index: -1;
  }
}

/* Music Videos Page Styles */
.music-videos-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.music-videos-content {
  max-width: 800px;
  margin: 0 auto;
}

.video-section {
  margin-bottom: 60px;
}

.video-section h2 {
  font-size: 1.8rem;
  font-weight: normal;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.privacy-notice {
  background-color: #f9f9f9;
  border-left: 3px solid #ddd;
  padding: 15px;
  margin: 20px 0 30px 0;
  font-size: 0.9rem;
  color: #666;
  clear: both;
}

.privacy-notice a {
  color: #555;
  text-decoration: underline;
}

.privacy-notice a:hover {
  color: #000;
}

.audio-wrapper {
  margin-bottom: 20px;
}

/* Mobile adjustments for embedded content */
@media (max-width: 767px) {
  .audio-wrapper iframe {
    height: 300px !important;
  }
}

/* GDPR Consent Styles */
.media-placeholder {
  width: 100%;
  height: 315px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.consent-message {
  padding: 20px;
  max-width: 80%;
  background-color: #f5f5f5;
  z-index: 5;
}

.consent-message h3 {
  margin-top: 0;
  font-weight: normal;
  color: #333;
}

.consent-message p {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #666;
}

.consent-button {
  background-color: #555;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}

.consent-button:hover {
  background-color: #333;
}

.audio-wrapper .media-placeholder {
  height: 300px;
}

.audio-wrapper iframe {
  border: none;
}

@media (max-width: 767px) {
  .media-placeholder {
    height: 250px;
  }
  
  .audio-wrapper .media-placeholder {
    height: 200px;
  }
} 