@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Montserrat:wght@400;700&display=swap');

:root {
  --color-bg: #1d1e20;
  --color-bg-alt: #263437;
  --color-accent: #1b4b4b;
  --color-highlight: #5a293c;
  --color-pink: #d28a80;
  --color-text: #f5f5f5;
  --color-muted: #bdbdbd;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  background-image: url('img/background.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--color-text);
  font-family: 'Montserrat', Arial, sans-serif;
  min-height: 100vh;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

main {
  background: var(--color-bg);
  margin: 0 auto;
  max-width: 800px;
  padding: 3em 2em;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  flex: 1;
  overflow: visible;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-bg-alt);
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-socials {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.3em;
  z-index: 101;
}

.header-socials a {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}

.header-socials img {
  width: 28px;
  height: 28px;
  filter: grayscale(1) brightness(1.5) contrast(1.2);
  transition: filter 0.2s;
}

.header-socials a:hover img {
  filter: none;
}



/* Dropdown and mobile menu styles */
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.2em;
}
.nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--color-pink);
}
/* Dropdown: keep open on hover/focus */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropbtn {
  background: none;
  color: var(--color-text);
  border: none;
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  padding: 0.3em 0.7em;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.dropbtn:hover, .dropdown:focus-within .dropbtn {
  background: var(--color-highlight);
  color: var(--color-pink);
}
.dropdown-content {
  display: none;
  position: absolute;
  background: var(--color-bg-alt);
  min-width: 140px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  border-radius: 8px;
  z-index: 1000;
  right: 0;
  margin-top: 0.5em;
  pointer-events: auto;
}
.dropdown-content a {
  color: var(--color-text);
  padding: 0.7em 1.2em;
  text-decoration: none;
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.dropdown-content a:hover {
  background: var(--color-highlight);
  color: var(--color-pink);
}
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown-content:hover,
.dropdown-content:focus {
  display: block;
}

/* Optional: prevent accidental close when moving between button and menu */
.dropdown-content {
  transition: opacity 0.1s;
}

/* Overlay for mobile menu */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 30, 40, 0.85);
  z-index: 1049;
  transition: opacity 0.2s;
}

.menu-overlay.active {
  display: block;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-bg-alt);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 1050;
  padding: 2.5em 0 0 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  align-items: center;
  justify-content: flex-start;
}

.mobile-menu a {
  color: var(--color-text);
  padding: 1.2em 2em;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
  width: 100%;
  text-align: center;
  border-radius: 0;
}

.mobile-menu a:hover {
  background: var(--color-highlight);
  color: var(--color-pink);
}

.mobile-menu.active {
  display: flex;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    padding: 0.5rem 0.5rem;
  }
  .header-socials {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    order: 3;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5em;
    gap: 0.5em;
  }

  .header-nav {
    display: none;
  }
}

@media (min-width: 901px) {
  .mobile-menu, .menu-overlay {
    display: none !important;
  }
  .header-nav {
    display: none;
  }
  .header-socials {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 0.3em;
  }
}

/* General responsive images and embeds */
img, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 1rem 1rem;
  background: var(--color-bg);
  gap: 1.5em;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.artist-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-highlight);
  margin-bottom: 1em;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.hero-content {
  max-width: 100%;
  width: 100%;
  text-align: center;
  padding: 0 0.5em;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.artist-name {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: var(--color-pink);
  margin: 0.2em 0 0.5em 0;
  letter-spacing: 0.18em;
  text-align: center;
}

.artist-logo {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 0 auto 2em auto;
  filter: brightness(1.1) contrast(1.1);
  display: block;
  position: relative;
  z-index: 10;
}
.artist-bio {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1em;
  text-align: center;
}
.spotify-embed {
  margin: 1em auto;
  text-align: center;
  max-width: 100%;
  display: block;
  width: 100%;
}

.spotify-embed iframe {
  margin: 0 auto !important;
  display: block !important;
  max-width: 100%;
  width: 100%;
}

/* Specific override for Bandcamp embed */
.spotify-embed iframe[src*="bandcamp.com"] {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  width: 100%;
}

.substack-signup {
  background: var(--color-bg-alt);
  border-radius: 12px;
  padding: 1.5em 1em;
  margin: 1.5em auto 0 auto;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  text-align: center;
  max-width: 100%;
}

.substack-signup iframe {
  margin: 0 auto;
  display: block;
}
.substack-signup h2 {
  color: var(--color-pink);
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  margin: 0 0 0.5em 0;
  text-align: center;
}
.substack-signup p {
  text-align: center;
  font-size: 1.1rem;
}
.substack-signup form {
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  margin-top: 0.5em;
}
.substack-signup input[type="email"],
.substack-signup input[type="text"],
.substack-signup textarea {
  padding: 1em;
  border-radius: 5px;
  border: none;
  font-size: 1em;
  background: var(--color-accent);
  color: var(--color-text);
}
.substack-signup button {
  background: var(--color-pink);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 1em;
  font-size: 1.1em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.substack-signup button:hover {
  background: var(--color-highlight);
}

.site-footer {
  background: var(--color-bg-alt);
  color: var(--color-muted);
  text-align: center;
  padding: 1.5em 0 0.8em 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  font-size: 1.1em;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7em;
  margin-bottom: 0.5em;
}
.footer-nav a {
  color: var(--color-pink) !important;
  text-decoration: none !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1em;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  padding: 0.6em 0.9em;
  margin: 0;
  display: inline-block;
}
.footer-nav a:hover {
  color: var(--color-highlight) !important;
}

/* Merch, assets, and other sections */
.merch-section, .assets-section, .testimonials-section, .tour-section, .epk-section, .contact-section {
  max-width: 100%;
  width: 100%;
  margin: 1.2em auto 0 auto;
  padding: 1em 0.5em;
  box-sizing: border-box;
}
.printful-embed, .assets-list, .testimonials-section blockquote, .epk-photos, .asset-item {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}
.epk-photos {
  flex-direction: column;
  gap: 0.7em;
}
.epk-photos img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

/* Contact form */
.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}
.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section textarea {
  padding: 1em;
  border-radius: 5px;
  border: none;
  font-size: 1em;
  background: var(--color-accent);
  color: var(--color-text);
}
.contact-section button {
  background: var(--color-pink);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 1em;
  font-size: 1.1em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-section button:hover {
  background: var(--color-highlight);
}

/* Center all section content */
.merch-section, .assets-section, .links-section, .contact-section, .tour-section, .epk-section {
  text-align: center;
}

.merch-section h1, .assets-section h1, .links-section h1, .contact-section h1, .tour-section h1, .epk-section h1 {
  text-align: center;
}

.merch-section p, .assets-section p, .links-section p, .contact-section p, .tour-section p, .epk-section p {
  text-align: center;
}

/* Center asset items */
.asset-item {
  text-align: center;
}

.asset-item h3 {
  text-align: center;
}

.asset-item p {
  text-align: center;
}

/* Center social links */
.social-links {
  text-align: center;
}

.social-link, .contact-link {
  text-align: center;
}

.social-link h3, .contact-link h3 {
  text-align: center;
}

.social-link p, .contact-link p {
  text-align: center;
}

/* Center EPK content */
.epk-content {
  text-align: center;
}

.epk-download h2 {
  text-align: center;
}

.epk-download p {
  text-align: center;
}

.testimonials-section h2 {
  text-align: center;
}

.testimonials-section blockquote {
  text-align: center;
  font-style: italic;
}

/* Center links grid */
.links-grid {
  text-align: center;
}

.link-card {
  text-align: center;
}

.link-card h3 {
  text-align: center;
}

.link-card p {
  text-align: center;
}

@media (min-width: 600px) {
  .hero {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 1.2rem 1.2rem 1.2rem;
    gap: 2.5em;
  }
  .artist-photo {
    margin-right: 2.5rem;
    margin-bottom: 0;
    width: 180px;
    height: 180px;
  }
  .hero-content {
    text-align: center;
    max-width: 500px;
    padding: 0;
  }
  .epk-photos {
    flex-direction: row;
    gap: 1em;
  }
} 

.artist-banner {
  max-width: 500px;
  width: 100%;
  margin: 0 auto 1.2em auto;
  overflow: hidden;
  border-radius: 12px;
  display: none;
}
.artist-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 5/2;
  border-radius: 12px;
}
@media (max-width: 600px) {
  .artist-banner {
    max-width: 98vw;
  }
  .artist-banner img {
    aspect-ratio: 3/1;
    border-radius: 8px;
  }
} 

/* Contact page specific styles */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2em;
  margin-top: 2em;
}

.contact-item {
  background: var(--color-bg-alt);
  padding: 1.5em;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.contact-item h2 {
  color: var(--color-pink);
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  margin: 0 0 0.8em 0;
  text-align: center;
}

.contact-item p {
  margin: 0.5em 0;
  text-align: center;
}

.contact-item a {
  color: var(--color-pink);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--color-highlight);
}

.contact-item ul {
  text-align: left;
  margin: 1em 0;
  padding-left: 1.5em;
}

.contact-item li {
  margin: 0.3em 0;
  color: var(--color-muted);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.social-link {
  background: var(--color-accent);
  padding: 1em;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.social-link:hover {
  background: var(--color-highlight);
}

.social-link h3 {
  color: var(--color-pink);
  margin: 0 0 0.3em 0;
  font-size: 1.1rem;
}

.social-link p {
  color: var(--color-muted);
  margin: 0;
  font-size: 0.9rem;
}

@media (min-width: 600px) {
  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .contact-item {
    flex: 1;
    min-width: 250px;
  }
  
  .social-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .social-link {
    flex: 1;
    min-width: 120px;
  }
} 

/* Harry Clarke page styles */
.harry-section {
  text-align: center;
  max-width: 100%;
  width: 100%;
  margin: 1.2em auto 0 auto;
  padding: 1em 0.5em;
  box-sizing: border-box;
}

.harry-content {
  display: flex;
  flex-direction: column;
  gap: 2em;
  margin-top: 2em;
  align-items: center;
}

.harry-image {
  max-width: 400px;
  margin: 0 auto;
}

.harry-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  filter: grayscale(0.3) contrast(1.1);
}

.harry-message {
  background: var(--color-bg-alt);
  padding: 2em;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.harry-message h2 {
  color: var(--color-pink);
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  margin: 0 0 1em 0;
  text-align: center;
}

.harry-message p {
  margin: 1em 0;
  line-height: 1.6;
  color: var(--color-text);
  text-align: center;
}

.harry-credit {
  margin-top: 2em;
  padding-top: 1em;
  border-top: 1px solid var(--color-accent);
  text-align: center;
}

.harry-credit p {
  color: var(--color-muted);
  font-size: 0.9em;
  margin: 0;
  text-align: center;
}

.harry-credit a {
  color: var(--color-pink);
  text-decoration: none;
  transition: color 0.2s;
}

.harry-credit a:hover {
  color: var(--color-highlight);
}

@media (min-width: 600px) {
  .harry-content {
    flex-direction: column;
    align-items: center;
    gap: 2em;
  }
  
  .harry-image {
    max-width: 400px;
  }
  
  .harry-message {
    max-width: 600px;
  }
} 

.merch-link {
  text-align: center;
  margin: 1.5em auto;
  max-width: 100%;
}

.merch-button {
  display: inline-block;
  background: var(--color-pink);
  color: #fff !important;
  text-decoration: none !important;
  padding: 1.2em 2.5em;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3em;
  transition: all 0.2s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  border: none;
  cursor: pointer;
}

.merch-button:hover {
  background: var(--color-highlight) !important;
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
} 

@media (min-width: 1200px) {
  main {
    max-width: 1000px;
    padding: 4em 3em;
  }
  
  .site-title {
    font-size: 2.2rem;
  }
  
  .artist-name {
    font-size: 2.8rem;
  }
  
  .artist-bio {
    font-size: 1.4rem;
  }
  
  .substack-signup h2 {
    font-size: 1.6rem;
  }
  
  .substack-signup p {
    font-size: 1.2rem;
  }
  
  .merch-button {
    font-size: 1.5em;
    padding: 1.4em 3em;
  }
}

@media (min-width: 1600px) {
  main {
    max-width: 1200px;
    padding: 5em 4em;
  }
  
  .site-title {
    font-size: 2.5rem;
  }
  
  .artist-name {
    font-size: 3.2rem;
  }
  
  .artist-bio {
    font-size: 1.6rem;
  }
  
  .substack-signup h2 {
    font-size: 1.8rem;
  }
  
  .substack-signup p {
    font-size: 1.3rem;
  }
  
  .merch-button {
    font-size: 1.7em;
    padding: 1.6em 3.5em;
  }
} 

/* Add padding to body to account for fixed header and footer */
body {
  padding-top: 80px; /* Adjust based on header height */
  padding-bottom: 100px; /* Adjust based on footer height */
}

@media (max-width: 900px) {
  body {
    padding-top: 120px; /* More padding on mobile for stacked header */
    padding-bottom: 120px; /* More padding on mobile for footer */
  }
  
  main {
    padding: 2em 1em;
    margin: 0 1em;
    max-width: none;
    width: auto;
  }
  
  .site-header {
    padding: 0.5rem 0.5rem;
  }
  
  .site-footer {
    padding: 1em 0 0.5em 0;
  }
}

@media (max-width: 600px) {
  body {
    padding-top: 140px; /* Even more padding for very small screens */
    padding-bottom: 140px;
  }
  
  main {
    padding: 1.5em 0.8em;
    margin: 0 0.5em;
    border-radius: 8px;
  }
  
  .hero {
    padding: 1.5rem 0.5rem 0.5rem 0.5rem;
    gap: 1em;
  }
  
  .artist-name {
    font-size: 1.8rem;
  }
  
  .artist-logo {
    max-width: 600px;
    margin: 0 auto 1.5em auto;
  }
  
  .artist-bio {
    font-size: 1rem;
  }
  
  .substack-signup {
    padding: 1em 0.7em;
    margin: 1em 0 0 0;
  }
  
  .substack-signup h2 {
    font-size: 1.2rem;
  }
  
  .substack-signup p {
    font-size: 1rem;
  }
  
  .merch-button {
    font-size: 1.1em;
    padding: 1em 2em;
  }
}

/* Ensure content doesn't get cut off */
.hero-content {
  max-width: 100%;
  width: 100%;
  text-align: center;
  padding: 0 0.5em;
  box-sizing: border-box;
}

/* Improve touch targets on mobile */
@media (max-width: 900px) {
  .header-socials img {
    width: 32px;
    height: 32px;
  }
  
  .footer-nav a {
    padding: 0.8em 1em;
    font-size: 1.2em;
  }
  
  .merch-button {
    min-height: 44px; /* Minimum touch target size */
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Smooth scrolling for better mobile experience */
html {
  scroll-behavior: smooth;
}

/* Prevent horizontal scroll on mobile */
* {
  box-sizing: border-box;
} 