/* Ransdell Music - 1860's meets 1960's Aesthetic */

/* Google Fonts - Amarante for headers (Folk Revival Poster Style) */
@import url('https://fonts.googleapis.com/css2?family=Amarante&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

/* Color Palette */
:root {
  --color-dark-green: #22403A;
  --color-medium-green: #365946;
  --color-sage: #8C7C5E;
  --color-tan: #BFB093;
  --color-warm-tan: #A6937C;
  --color-white: #FFFFFF;
  --color-accent: #b0b0b0;
}

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

body {
  font-family: 'Crimson Text', serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-white);
  background: var(--color-dark-green);
  position: relative;
}

/* Wallpaper Background Texture */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('media/wallpaper.jpg');
  background-size: 400px;
  background-repeat: repeat;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Amarante', cursive;
  font-weight: normal;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  color: var(--color-accent);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.8rem;
  color: var(--color-white);
}

h4 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1.2rem;
}

a {
  color: var(--color-tan);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Navigation */
header {
  background: rgba(34, 64, 58, 0.95);
  border-bottom: 3px solid var(--color-sage);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-title {
  font-family: 'Amarante', cursive;
  font-size: 2rem;
  color: var(--color-accent);
  margin: 0;
  text-transform: uppercase;
}

.site-title a {
  color: var(--color-accent);
  text-decoration: none;
}

.site-title a:hover {
  color: var(--color-white);
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  font-family: 'Amarante', cursive;
  font-size: 1.1rem;
  color: var(--color-tan);
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: block;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--color-white);
  border-color: var(--color-sage);
  background: rgba(140, 124, 94, 0.2);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-dark-green) 0%, var(--color-medium-green) 100%);
  padding: 6rem 0;
  text-align: center;
  border-bottom: 4px solid var(--color-sage);
}

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

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: 4rem;
}

.hero p {
  font-size: 1.4rem;
  color: var(--color-tan);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tagline {
  font-family: 'Amarante', cursive;
  font-size: 1.8rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

/* Main Content Sections */
main {
  padding: 4rem 0;
  min-height: 60vh;
}

section {
  margin-bottom: 4rem;
}

.content-section {
  background: rgba(54, 89, 70, 0.3);
  border: 2px solid var(--color-sage);
  border-radius: 8px;
  padding: 3rem;
  margin-bottom: 3rem;
}

/* Bio Section */
.bio-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.bio-image {
  width: 100%;
  border: 4px solid var(--color-sage);
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.bio-text {
  font-size: 1.2rem;
  line-height: 1.8;
}

/* Portfolio/Discography Grid */
.portfolio-grid,
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.portfolio-item,
.album-item {
  background: rgba(54, 89, 70, 0.4);
  border: 2px solid var(--color-sage);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.portfolio-item:hover,
.album-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.portfolio-image,
.album-image {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 2px solid var(--color-sage);
}

.portfolio-content,
.album-content {
  padding: 1.5rem;
}

.portfolio-content h3,
.album-content h3 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.client {
  color: var(--color-tan);
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.portfolio-link,
.album-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background: var(--color-sage);
  color: var(--color-white);
  border: 2px solid var(--color-tan);
  border-radius: 4px;
  font-family: 'Amarante', cursive;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.portfolio-link:hover,
.album-link:hover {
  background: var(--color-accent);
  border-color: var(--color-white);
  color: var(--color-white);
  transform: scale(1.05);
}

/* Performance List */
.performance-list {
  list-style: none;
  padding: 0;
}

.performance-list li {
  background: rgba(54, 89, 70, 0.3);
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.performance-list li:hover {
  background: rgba(54, 89, 70, 0.5);
}

/* Contact Section */
.contact-info {
  text-align: center;
  font-size: 1.3rem;
}

.contact-info a {
  font-family: 'Amarante', cursive;
  font-size: 1.6rem;
  color: var(--color-accent);
  display: inline-block;
  margin: 1rem 0;
  padding: 1rem 2rem;
  border: 3px solid var(--color-sage);
  border-radius: 8px;
  background: rgba(54, 89, 70, 0.3);
  transition: all 0.3s ease;
}

.contact-info a:hover {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-white);
  transform: scale(1.05);
}

/* Footer */
footer {
  background: rgba(34, 64, 58, 0.95);
  border-top: 3px solid var(--color-sage);
  padding: 2rem 0;
  text-align: center;
  margin-top: 4rem;
}

footer p {
  color: var(--color-tan);
  margin: 0;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  nav ul li a {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .tagline {
    font-size: 1.4rem;
  }

  .bio-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .portfolio-grid,
  .album-grid {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 2rem 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  main {
    padding: 2rem 0;
  }

  .content-section {
    padding: 1.5rem 1rem;
  }
}
