/*
Theme Name: Annie Alice Music – Full Site (Retro Mellow Edition v3)
Theme URI: https://anniealicemusic.com
Author: Annie Alice
Author URI: https://anniealicemusic.com
Description: Retro mellow theme with warm earthy tones and cohesive green-accented sections.
Version: 1.4
License: GPL v2 or later
Tags: music, artist, portfolio, gigs, gallery
Text Domain: annie-alice-music
*/

/* ===============================
   🎨 COLOUR VARIABLES
   =============================== */
:root {
  --burnt-orange: #D6744C;
  --mustard-yellow: #E1A54F;
  --cream: #F6EDC4;
  --sage-green: #AFC8A1;
  --seafoam: #7BAE9F;
  --text: #3B3B3B;
  --warm-gold: #D8AD66;
}

/* ===============================
   🧩 GLOBAL STYLES
   =============================== */
* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  font-family: 'Raleway', sans-serif;
  color: var(--text);
  background: var(--cream);
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--burnt-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--mustard-yellow); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

/* ===============================
   🪶 HEADER
   =============================== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  background: transparent;
}
.site-brand { display: flex; align-items: center; gap: 1rem; }
.site-brand img.logo { width: 130px; height: auto; }
.site-nav a {
  margin-left: 1rem;
  font-weight: 600;
  color: var(--text);
}
.site-nav a:hover { color: var(--burnt-orange); }

/* ===============================
   🌞 HERO SECTION
   =============================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--warm-gold) 0%, var(--cream) 100%);
  padding: 5rem 1rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--text);
  padding: 2rem;
  background: rgba(255,255,255,0.5);
  border-radius: 12px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  margin: 0;
  color: var(--text);
  letter-spacing: 0.5px;
}
.hero p.lead {
  max-width: 700px;
  font-size: 1.1rem;
  color: #5a554e;
  margin-top: 0.5rem;
  font-style: italic;
}
.hero p span {
  font-size: 1.3rem;
  font-weight: 500;
}

/* ===============================
   🌿 BUTTONS
   =============================== */
.btn {
  background-color: var(--seafoam);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: var(--sage-green);
  transform: translateY(-2px);
}

/* ===============================
   ✨ SECTIONS
   =============================== */
.section {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  margin-bottom: 3rem;
}
.section h2 {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--mustard-yellow);
  display: inline-block;
  padding-bottom: 4px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

/* ===============================
   💫 ABOUT
   =============================== */
.about p { line-height: 1.7; }

/* ===============================
   🎧 LISTEN / MUSIC
   =============================== */
.listen {
  background-color: #9FC8C7;
  border-radius: 10px;
  padding: 2rem;
}
.listen .sample {
  background: #D37F7F;
  color: #000;
  padding: 1.5rem;
  border-radius: 16px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

/* 🎵 Softer button style for music section only */
.sample .btn {
  background-color: #A6CCC7; /* softer seafoam */
  color: #000; /* black text */
}
.sample .btn:hover {
  background-color: #BFE0DC; /* lighter hover */
  color: #000;
}

/* ===============================
   🎤 GIGS (RETRO STYLE)
   =============================== */
.section.gigs {
  background-color: var(--sage-green);
  border-radius: 12px;
  padding: 3rem 2rem;
  color: #fff;
  margin-bottom: 3rem;
}
.section.gigs h2 {
  color: #fff;
  border-bottom: 2px solid var(--mustard-yellow);
}
.gigs-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.gig-item {
  background: rgba(255,255,255,0.15);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 3px 5px rgba(0,0,0,0.1);
  backdrop-filter: blur(2px);
  color: #fff;
  line-height: 1.7;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gig-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.2);
}
.gig-item p strong {
  color: #fff;
  font-weight: 700;
}
.gig-item em {
  color: #fff;
  opacity: 0.9;
}
@media (min-width: 700px) {
  .gigs-preview {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===============================
   📸 GALLERY
   =============================== */
.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.gallery .gallery-item { text-align: center; }
.gallery .gallery-item .thumb {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  border-radius: 10px;
  background-color: #fff9f0;
  padding: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.gallery .gallery-item .thumb:hover { transform: scale(1.03); }
.gallery .gallery-item .caption {
  font-size: 0.9rem;
  margin-top: 6px;
  color: #5a554e;
  font-style: italic;
}

/* ===============================
   💌 CONTACT & SOCIALS
   =============================== */
.section.contact a {
  color: var(--seafoam);
  text-decoration: none;
}
.section.contact a:hover {
  color: var(--mustard-yellow);
  text-decoration: underline;
}

/* ===============================
   🌸 BOOKING
   =============================== */
.booking .price-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.price {
  background: #D37F7F;
  color: #000;
  padding: 0.8rem;
  border-radius: 10px;
  min-width: 140px;
  text-align: center;
  border: 1px solid #f3e0c3;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* ===============================
   🌿 FOOTER
   =============================== */
footer {
  text-align: center;
  padding: 2rem 0;
  background-color: var(--seafoam);
  color: #fff;
  font-size: 0.9rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}
footer a {
  color: #fff;
  text-decoration: underline;
}
footer a:hover { color: var(--mustard-yellow); }

/* ===============================
   📱 RESPONSIVE
   =============================== */
@media (min-width: 900px) {
  .hero {
    height: 520px;
    border-radius: 12px;
  }
  .hero-inner { transform: translateY(10px); }
}
