@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
  --primary: #8b0000; /* Dark red */
  --secondary: #1a1a1a;
  --accent: #d4af37; /* Gold */
  --text: #f8f8f8;
  --text-secondary: #ccc;
  --bg-dark: #121212;
}

/* Global site styling for Everything Elvis. */
body {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text);
  line-height: 1.8;
  font-size: 1.1rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  margin-top: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

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

a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Navigation bar */
.nav {
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
  transition: all 0.3s ease;
  display: block;
}

.menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

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

.menu a:hover::after {
  width: 100%;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.content-text {
  line-height: 1.8;
  font-size: 1.1rem;
  color: var(--text);
}

.content-image {
  margin: 2rem 0;
  text-align: center;
}

.content-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.content-image figcaption {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* Responsive layout adjustments */
@media (min-width: 768px) {
  .content-wrapper {
    display: block;
    max-width: 800px;
  }

  .content-wrapper.centered {
    grid-template-columns: 1fr;
  }
  
  
  .content-text {
    grid-column: 1;
  }
}

/* Interview Section */
.interview-section {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.interview-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem 0;
}

.interview-card {
  display: flex;
  background: rgba(30, 30, 30, 0.7);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.interview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 175, 55, 0.3);
}

.interview-card.reverse {
  flex-direction: row-reverse;
}

.interview-quote {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.interview-quote p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f0f0f0;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent, #d4af37);
}

.interview-quote cite {
  font-style: normal;
  color: #d4af37;
  font-size: 0.95rem;
  opacity: 0.9;
  align-self: flex-end;
  margin-top: 1rem;
}

.interview-image {
  flex: 1;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.interview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.interview-card:hover .interview-image img {
  transform: scale(1.03);
}

/* Responsive styles for interview section */
@media (max-width: 900px) {
  .interview-card {
    flex-direction: column;
  }
  
  .interview-card.reverse {
    flex-direction: column;
  }
  
  .interview-image {
    min-height: 250px;
  }
  
  .interview-quote {
    padding: 2rem;
  }
}

/* Video Section */
.video-section {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.video-wrapper {
  max-width: 1000px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.video-wrapper.centered {
    grid-template-columns: 1fr;
    max-width: 800px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

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

.video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(212, 175, 55, 0.4);
}

.video-description {
  color: #f0f0f0;
  line-height: 1.7;
  font-size: 1.1rem;
}

.video-description p {
  margin-bottom: 1.5rem;
}

/* Responsive styles for video section */
@media (max-width: 900px) {
  .video-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .video-container {
    margin-bottom: 1rem;
  }
}

/* Music Page Styles */
.music-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: #f0f0f0;
  line-height: 1.6;
}

.hero-section {
  text-align: center;
  margin: 0 auto 4rem;
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(40, 40, 40, 0.9) 100%);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/home_hero.png') center/cover no-repeat;
  opacity: 0.1;
  z-index: -1;
}

 

.hero-section h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #d4af37;
  border-radius: 3px;
}

.hero-subtitle {
  color: #d4af37;
  font-size: 1.4rem;
  margin: 1rem 0 0;
  font-weight: 300;
  letter-spacing: 1px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

 

.section-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  border-radius: 3px;
}

/* Music Grid */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin: 0 0 6rem;
  position: relative;
}

.music-card {
  background: linear-gradient(145deg, #1e1e1e 0%, #252525 100%);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.music-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f1c40f);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.music-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border-color: rgba(212, 175, 55, 0.3);
}

.music-card:hover::before {
  opacity: 1;
}

.album-cover {
  height: 220px;
  background: linear-gradient(135deg, #141414 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.music-card:hover .album-cover {
  transform: scale(1.02);
}

.album-cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.album-year {
  font-size: 4.5rem;
  font-weight: bold;
  color: rgb(212, 175, 55);
  z-index: 1;
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.music-card:hover .album-year {
  transform: scale(1.05);
  color: rgb(227, 189, 68);
}

.music-info {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  background: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(5px);
}

.music-info h3 {
  margin: 0 0 0.7rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 0.5rem;
}

.music-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.music-card:hover .music-info h3::after {
  width: 60px;
}

.music-info .label {
  color: #d4af37;
  font-size: 0.95rem;
  margin: 0 0 1.2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.music-info .label::before {
  content: '•';
  margin-right: 8px;
  color: rgba(212, 175, 55, 0.7);
}

.music-info .notes {
  color: #d0d0d0;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
  flex-grow: 1;
  font-weight: 300;
}

/* Singles Table */
.singles-table {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 1px 0 0;
  margin: 0 0 6rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
  overflow-x: auto;
  font-size: 0.95rem;
  line-height: 1.6;
}

.singles-table::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f1c40f);
}

.singles-table {
  width: 100%;
  overflow-x: auto;
  margin: 2rem 0;
}

.singles-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.singles-table thead {
  position: sticky;
  top: 0;
  z-index: 10;
}

.singles-table th {
  text-align: left;
  padding: 1.1rem 1.8rem;
  background: #222;
  color: #f8f8f8;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  position: relative;
  white-space: nowrap;
  border-bottom: 2px solid #d4af37;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  letter-spacing: 1px;
}

.singles-table th:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(212, 175, 55, 0.2);
}

.singles-table td {
  padding: 1.1rem 1.8rem;
  border-bottom: 1px solid #2a2a2a;
  color: #f0f0f0;
  vertical-align: middle;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
  font-weight: 300;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Tabs Container */
.tabs-container {
  margin: 2rem 0;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Tabs Header */
.tabs-header {
  display: flex;
  background: #222;
  border-bottom: 2px solid #d4af37;
  padding: 0 1rem;
}

.tab-button {
  background: none;
  border: none;
  color: #b0b0b0;
  padding: 1rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.tab-button:hover {
  color: #fff;
}

.tab-button.active {
  color: #d4af37;
  font-weight: 600;
}

.tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #d4af37;
}

/* Tab Content */
.tab-content {
  display: none;
  padding: 1.5rem;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Singles Grid */
.singles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

.single-card {
  background: #222;
  border-radius: 6px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 3px solid #d4af37;
}

.single-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.single-year {
  color: #d4af37;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.single-title {
  color: #fff;
  font-size: 1.2rem;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.single-bside {
  color: #b0b0b0;
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.single-bside span {
  color: #d4af37;
  font-weight: 500;
}

.single-notes {
  color: #c0c0c0;
  font-size: 0.95rem;
  line-height: 1.5;
  border-top: 1px solid #2a2a2a;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .tabs-container {
    margin: 1rem -1rem;
    width: calc(100% + 2rem);
    border-radius: 0;
  }
  
  .tabs-header {
    overflow-x: auto;
    padding: 0;
    -webkit-overflow-scrolling: touch;
  }
  
  .tab-button {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    white-space: nowrap;
  }
  
  .singles-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .single-card {
    padding: 1.25rem;
  }
}

.singles-table td.title {
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
}

.singles-table td.b-side {
  color: #b0b0b0;
  font-style: italic;
}

.singles-table td.notes {
  color: #c0c0c0;
  font-size: 0.9rem;
}

.singles-table tbody tr {
  position: relative;
  transition: all 0.2s ease;
  background: #1f1f1f;
}

.singles-table tbody tr:nth-child(even) {
  background: #242424;
}

.singles-table tbody tr:hover {
  background: #2a2a2a;
}

.singles-table tbody tr:hover td {
  color: #ffffff;
}

.singles-table tbody tr:hover td.b-side {
  color: #d0d0d0;
}

.singles-table tbody tr:hover td.notes {
  color: #e0e0e0;
}

.singles-table tbody tr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: -1;
}

.singles-table tbody tr:nth-child(odd) {
  background: rgba(40, 40, 40, 0.3);
}

.singles-table tbody tr:hover {
  background: rgba(50, 50, 50, 0.4);
}

.singles-table tbody tr:hover::before {
  opacity: 1;
}

.singles-table tbody tr:last-child td {
  border-bottom: none;
}

.singles-table .year {
  color: #d4af37;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.singles-table .title {
  font-weight: 500;
  color: #fff;
  position: relative;
  padding-left: 15px;
}

.singles-table .title::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 1.2rem;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.singles-table tbody tr:hover .title::before {
  opacity: 1;
}

.singles-table .b-side {
  font-style: italic;
  color: #aaa;
  font-size: 0.9rem;
}

.singles-table .notes {
  color: #bbb;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .music-page {
    padding: 1.5rem;
  }
  
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .section-header {
    font-size: 2.2rem;
    margin: 4rem 0 2rem;
  }
  
  .music-grid {
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-header {
    font-size: 2rem;
    margin: 3.5rem 0 1.8rem;
  }
  
  .music-card {
    max-width: 100%;
  }
  
  .singles-table {
    border-radius: 8px;
  }
  
  .singles-table th,
  .singles-table td {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .music-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  
  .hero-section {
    padding: 2.5rem 1.5rem;
    margin-bottom: 3rem;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-header {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    text-align: center;
  }
  
  .music-card {
    max-width: 100%;
  }
  
  .album-cover {
    height: 200px;
  }
  
  .album-year {
    font-size: 4rem;
  }
  
  .music-info {
    padding: 1.5rem;
  }
  
  .music-info h3 {
    font-size: 1.3rem;
  }
  
  .singles-table {
    border-radius: 6px;
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  
  .singles-table th,
  .singles-table td {
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
  }
  
  .singles-table .year {
    font-size: 1rem;
  }
  
  .singles-table .b-side,
  .singles-table .notes {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .music-page {
    padding: 1rem 0.5rem;
  }
  
  .hero-section {
    padding: 2rem 1rem;
    margin: 0 -0.5rem 2.5rem;
    border-radius: 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .section-header {
    font-size: 1.6rem;
    margin: 2.5rem 0 1.5rem;
  }
  
  .music-grid {
    gap: 1.5rem;
  }
  
  .album-cover {
    height: 180px;
  }
  
  .album-year {
    font-size: 3.5rem;
  }
  
  .music-info {
    padding: 1.2rem;
  }
  
  .music-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }
  
  .music-info .label {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
  }
  
  .music-info .notes {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .singles-table {
    margin: 0 -0.5rem;
    width: calc(100% + 1rem);
    border-radius: 0;
  }
  
  .singles-table th,
  .singles-table td {
    padding: 0.8rem 0.7rem;
    font-size: 0.85rem;
  }
  
  .singles-table th {
    padding: 0.9rem 0.7rem;
    font-size: 0.8rem;
  }
  
  .singles-table .year {
    font-size: 0.95rem;
  }
  
  .singles-table .b-side,
  .singles-table .notes {
    font-size: 0.82rem;
  }
}

/* Timeline Section */
.timeline-section {
  margin: 4rem auto;
  padding: 2.5rem;
  max-width: 1000px;
  background: rgba(26, 26, 26, 0.9);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-header {
  text-align: center;
  margin: 0 0 2.5rem 0;
  color: var(--accent);
  font-size: 2.2rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  padding-bottom: 1rem;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}

.content-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 1rem;
  margin: 2rem 0;
  font-size: 1.05rem;
}

.content-table th,
.content-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  vertical-align: top;
  border: none;
}

.content-table th {
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  border-bottom: 2px solid var(--accent);
  padding: 1rem 1.5rem;
}

.content-table tbody tr {
  background: rgba(40, 40, 40, 0.6);
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.content-table tbody tr:hover {
  transform: translateY(-2px);
  background: rgba(50, 50, 50, 0.8);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.content-table td:first-child {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  width: 120px;
  border-right: 2px solid rgba(212, 175, 55, 0.2);
}

.content-table td {
  color: #f0f0f0;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .timeline-section {
    padding: 1.5rem;
    margin: 2rem 1rem;
  }
  
  .content-table {
    font-size: 0.95rem;
  }
  
  .content-table th,
  .content-table td {
    padding: 0.8rem 1rem;
  }
  
  .content-table td:first-child {
    width: 100px;
  }
}

/* Content sections */
.content-section {
  background: rgba(26, 26, 26, 0.7);
  border-radius: 10px;
  padding: 2.5rem;
  margin: 2rem 0;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.content-section h2 {
  color: var(--accent);
  margin-top: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.content-paragraph {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text);
  font-size: 1.1rem;
}

/* Footnote styling */
a.footnote {
  font-size: 0.8rem;
  vertical-align: super;
  text-decoration: none;
  color: #2f3a56;
}


/* Footer */
.footer {
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--text-secondary);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  z-index: 10;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.back-to-top svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: #000;
  transition: transform 0.3s ease;
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

.footer p {
  margin: 0.5rem 0;
}

.footer a {
  color: var(--accent);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #fff;
  text-decoration: none;
}

/* Hero section styling */
.hero-section {
  text-align: center;
  padding: 6rem 2rem;
  margin: -2rem -2rem 3rem -2rem;
  background-color: var(--bg-dark);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 10px var(--accent);
  animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--text);
  font-weight: 300;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
  }
  to {
    text-shadow: 0 0 20px var(--accent), 0 0 30px var(--accent), 0 0 40px var(--accent);
  }
}

.hero-img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2rem;
  margin: 0.5rem 0;
  color: #ffd700;
}

.hero p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0.5rem auto;
  color: #f8f8f8;
}


.residences-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('/images/graceland.jpg');
}

.home-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
    url('https://media-cdn.tripadvisor.com/media/photo-s/0e/9e/5d/4d/elvis-presley-s-birthplace.jpg');
}

  /* Places page hero: push content lower to reveal background subject */
  .hero-section.places-hero {
    justify-content: flex-end;           /* move content toward bottom */
    padding-top: 4vh;                     /* less top padding */
    padding-bottom: 16vh;                 /* more bottom padding */
    min-height: 82vh;                     /* ensure tall hero */
    background-position: center 20%;      /* shift image up to reveal face */
  }

  .hero-section.places-hero h1 {
    margin-bottom: 0.5rem;
  }

  .hero-section.places-hero .hero-subtitle {
    margin-top: 0.5rem;
  }

  @media (max-width: 900px) {
    .hero-section.places-hero {
      padding-top: 6vh;
      padding-bottom: 12vh;
      min-height: 74vh;
      background-position: center 30%;
    }
  }

/* Cards grid for home page */
.cards {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 1rem 0 2rem;
}

.cards li {
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 1rem;
  transition: transform 0.2s ease;
}

.cards li:hover {
  transform: translateY(-4px);
}

.cards li a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.cards li strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #2f3a56;
}

.cards li span {
  color: #cccccc;
  font-size: 0.9rem;
}