/* 
  Rhiannon Hope EPK Styles
  Professional styling for Electronic Press Kit
*/

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  line-height: 1.6;
  color: #333;
  background-color: #faf9f7;
}

/* Layout */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 60px;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px 0;
  color: #333;
}

.header h1 {
  font-size: 4rem;
  font-weight: normal;
  letter-spacing: 4px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.header .subtitle {
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #8b7355;
  margin-bottom: 20px;
}

/* Announcement Section */
.announcement {
  background: none;
  color: #333;
  padding: 30px 20px;
  border: 2px solid #8b7355;
  border-radius: 5px;
  margin: 30px 0;
  text-align: center;
}

.announcement h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.announcement .ep-title {
  font-size: 1.8rem;
  font-style: italic;
  margin: 10px 0;
  color: #8b7355;
}

.announcement .date {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
}

/* Content Grid */
.content-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px 0;
}

.content-section {
  background: white;
  padding: 50px 60px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  font-size: 1.1rem;
  line-height: 1.8;
  border: 1px solid #f0f0f0;
}

.content-section h3 {
  color: #8b7355;
  font-size: 2.2rem;
  margin-bottom: 30px;
  border-bottom: 3px solid #8b7355;
  padding-bottom: 15px;
  font-weight: normal;
}

.content-section p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #444;
}

/* Placeholder Styles */
.image-placeholder {
  background-color: #e8e6e3;
  border: 2px dashed #8b7355;
  padding: 40px;
  text-align: center;
  color: #8b7355;
  margin: 20px 0;
  border-radius: 5px;
}

/* Tracklist */
.tracklist {
  background: #f8f6f3;
  padding: 35px;
  border-radius: 8px;
  margin: 30px 0;
  border: 2px solid #e8e6e3;
}

.tracklist h4 {
  color: #8b7355;
  margin-bottom: 25px;
  font-size: 1.4rem;
  font-weight: bold;
}

.tracklist ol {
  margin-left: 30px;
}

.tracklist li {
  margin-bottom: 15px;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #444;
}

.tracklist .bonus {
  font-style: italic;
  color: #666;
  font-size: 1rem;
}

/* Live Dates */
.dates-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.date-item {
  background: #f8f6f3;
  padding: 25px;
  border-radius: 8px;
  border-left: 6px solid #8b7355;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.date-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.date-item .date {
  font-weight: bold;
  color: #8b7355;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.date-item .venue {
  font-size: 1.25rem;
  margin: 8px 0;
  color: #333;
  font-weight: 500;
}

.date-item .support {
  font-style: italic;
  color: #666;
  font-size: 1rem;
  margin-top: 5px;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 50px 60px;
  border-radius: 12px;
  text-align: center;
  margin-top: 60px;
  font-size: 1.15rem;
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.2);
}

.contact-section h3 {
  color: white;
  border-bottom: 3px solid white;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 35px;
  font-size: 2.2rem;
  font-weight: normal;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.contact-info > div {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Quote Styling */
.quote {
  font-style: italic;
  font-size: 1.4rem;
  color: #555;
  background: #f8f6f3;
  padding: 40px;
  border-left: 6px solid #8b7355;
  margin: 40px 0;
  line-height: 1.9;
  border-radius: 0 8px 8px 0;
  position: relative;
}

.quote::before {
  content: '"';
  font-size: 3rem;
  color: #8b7355;
  position: absolute;
  top: 10px;
  left: 15px;
  font-family: Georgia, serif;
}

.quote::after {
  content: '"';
  font-size: 3rem;
  color: #8b7355;
  position: absolute;
  bottom: -10px;
  right: 15px;
  font-family: Georgia, serif;
}

/* Single Info Callout */
.single-info {
  background: linear-gradient(135deg, #8b7355 0%, #a68b5b 100%);
  color: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin: 30px 0;
  font-size: 1.3rem;
  box-shadow: 0 6px 18px rgba(139, 115, 85, 0.3);
  border: none;
}

/* Press Photo */
.press-photo {
  text-align: center;
  margin: 50px 0;
}

.press-photo img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.press-photo p {
  font-size: 1.1rem;
  margin-top: 15px;
  font-style: italic;
  color: #666;
}

/* Artwork Images */
.single-artwork,
.ep-artwork {
  text-align: center;
  margin: 30px 0;
}

.single-artwork img,
.ep-artwork img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.single-artwork p,
.ep-artwork p {
  font-size: 1.1rem;
  margin-top: 15px;
  font-weight: bold;
  color: #555;
}

/* Vinyl Covers */
.vinyl-covers {
  display: flex;
  gap: 30px;
  margin: 40px 0;
  justify-content: center;
  flex-wrap: wrap;
}

.vinyl-cover {
  text-align: center;
  flex: 1;
  min-width: 300px;
  max-width: 450px;
}

.vinyl-cover img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.vinyl-cover figcaption {
  font-size: 1.1rem;
  margin-top: 15px;
  font-weight: bold;
  color: #555;
}

/* Logo and Links */
.logo-inline {
  height: 60px;
  vertical-align: middle;
  margin: 0 8px;
  opacity: 0.9;
}

/* Live Video Section */
.video-section {
  background: white;
  padding: 50px 60px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
  text-align: center;
  border: 1px solid #f0f0f0;
}

.video-section h3 {
  color: #8b7355;
  font-size: 2.2rem;
  margin-bottom: 30px;
  border-bottom: 3px solid #8b7355;
  padding-bottom: 15px;
  font-weight: normal;
  display: inline-block;
}

.video-section p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #444;
  text-align: center;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  margin: 0 auto;
  max-width: 800px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.link {
  color: #8b7355;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.link:hover {
  color: #a68b5b;
  border-bottom: 1px solid #a68b5b;
}

.contact-section .link {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-section .link:hover {
  color: #f0f0f0;
  border-bottom: 1px solid #fff;
}

a {
  color: #8b7355;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #a68b5b;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 20px 30px;
  }

  .header h1 {
    font-size: 2.8rem;
  }

  .header .subtitle {
    font-size: 1.2rem;
  }

  .announcement {
    padding: 25px 15px;
  }

  .announcement h2 {
    font-size: 1.8rem;
  }

  .announcement .ep-title {
    font-size: 1.4rem;
  }

  .content-section {
    padding: 30px 25px;
    font-size: 1rem;
  }

  .content-section h3 {
    font-size: 1.8rem;
  }

  .content-section p {
    font-size: 1rem;
  }

  .quote {
    font-size: 1.2rem;
    padding: 25px;
  }

  .contact-section {
    padding: 35px 25px;
  }

  .video-section {
    padding: 30px 25px;
  }

  .video-section h3 {
    font-size: 1.8rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 25px;
  }

  .dates-list {
    grid-template-columns: 1fr;
  }

  .press-photo img {
    max-width: 95%;
  }

  .single-artwork img,
  .ep-artwork img {
    max-width: 400px;
  }

  .vinyl-covers {
    flex-direction: column;
    gap: 20px;
  }

  .vinyl-cover {
    min-width: auto;
    max-width: 400px;
    margin: 0 auto;
  }
}
