/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #2e2e2e; /* Dark grey border background */
  color: #333;
  margin: 0;
  padding: 20px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  background: #fff; /* White background for main content */
  padding: 20px;
  border-radius: 15px; /* Rounded corners */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Drop shadow */
}

.container2 {
  background: #fff;
  padding: 1rem 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  margin: 20px auto;
  max-width: 1200px;
}

.container {
  text-align: left;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 15px; /* Rounded corners for hero section */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Drop shadow */
}



/* Header Styles */
header {
  background: #2c3e50;
  color: #fff;
  padding: 1rem 2rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 15px; /* Rounded corners for header */
}

header h1 {
  margin: 0;
  font-size: 2rem;
}

/* Navigation Styles */
nav {
  display: flex;
  justify-content: center;
  background: #2e2e2e;
  padding: 0.5rem 0;
  border-radius: 15px; /* Rounded corners for navigation */
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 1rem;
  font-size: 1rem;
  padding: 0.5rem;
}

nav a:hover {
  background: #555;
  border-radius: 5px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 15px; /* Rounded corners for hero section */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Drop shadow */
}

.hero img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #555;
}

/* Definitions Section */
.definitions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.definition {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 15px; /* Rounded corners for definitions */
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Drop shadow */
}

/* Category Section */
.category {
  margin-bottom: 2rem;
}

.category h2 {
  border-left: 4px solid #007BFF;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #007BFF;
}

/* Writing Section */
.writing {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 3px solid #2c3e50;
  border-radius: 15px; /* Rounded corners for writings */
  background: #fafafa;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Drop shadow */
}

.writing:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.writing h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #333;
}

.writing h3 a {
  text-decoration: none;
  color: #007BFF;
  transition: color 0.2s ease;
}

.writing h3 a:hover {
  color: #0056b3;
}

.writing p {
  margin: 0.5rem 0;
  color: #666;
}

.writing em {
  font-size: 0.9rem;
  color: #999;
}

/* View Page */
.content {
  color: #444;
  margin-top: 1rem;
}

.content p {
  margin-bottom: 1rem;
}

a.back-link {
  display: inline-block;
  margin-top: 2rem;
  color: #007BFF;
  text-decoration: none;
  font-size: 0.95rem;
}

a.back-link:hover {
  text-decoration: underline;
}

/* Footer Styles */
footer {
  background: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: auto;
  border-radius: 15px; /* Rounded corners for footer */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Drop shadow */
}

footer p {
  margin: 0;
  font-size: 1rem;
}

footer a {
  color: #007BFF;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

/* Search Bar Styles */
.search-form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.search-form input[type="text"] {
  width: 50%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 15px;
  font-size: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease-in-out;
}

.search-form input[type="text"]:focus {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  outline: none;
}

.search-form select {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 15px;
  font-size: 1rem;
  background: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.search-form button {
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background: #007BFF;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.search-form button:hover {
  background: #0056b3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* About Me Page Specific Styles */
.hero {
  text-align: center;
  padding: 2rem 1rem;
  background: #f4f4f4;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
}

.about-section {
  margin-bottom: 30px;
}

.about-section h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  border-left: 4px solid #007BFF;
  padding-left: 10px;
  margin-bottom: 15px;
}

.about-section ul {
  list-style: disc;
  padding-left: 20px;
}

.about-section ul li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #333;
}

.category {
  margin-bottom: 20px;
}

.category h3 {
  font-size: 1.5rem;
  color: #007BFF;
  margin-bottom: 5px;
}

.category .time-period {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
}

.category ul {
  list-style: disc;
  padding-left: 20px;
}

.category ul li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #333;
}

.album-feature {
  background: url('images/reddirt.jpg') center/cover no-repeat;
  position: relative;
  padding: 100px 20px;
  margin-top: 40px;
}

.album-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.album-overlay {
  position: relative;
  max-width: 800px;
  margin: auto;
  text-align: center;
  color: #fff;
}

.album-feature h2 {
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.tagline {
  font-style: italic;
  color: #c0392b;
  margin-bottom: 20px;
}

.album-desc {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}

.album-actions .btn-primary,
.album-actions .btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  margin: 5px;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s ease;
}

.btn-primary {
  background: #c0392b;
  color: #fff;
}

.btn-primary:hover {
  background: #e74c3c;
}

.btn-secondary {
  border: 1px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

.platform {
  display: inline-block;
  margin: 5px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  font-size: 13px;
}

.platform:hover {
  background: rgba(255,255,255,0.1);
}



.artist-links {
  margin-top: 25px;
  font-size: 14px;
  opacity: 0.85;
}

.artist-links a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}

.artist-links a:hover {
  color: #c0392b;
}
.footer-follow {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.85;
}

.footer-follow a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-follow a:hover {
    color: #c0392b;
}

/* STORY / TRACK STYLING */

.story-header {
  background: linear-gradient(135deg, #2c3e50, #1f2a36);
  color: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 25px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

/* Main Title */
.story-header h1 {
  font-size: 2.4rem;
  margin: 0;
  letter-spacing: 1px;
}

/* Subtitle */
.story-header h3 {
  margin-top: 8px;
  font-weight: normal;
  color: #b0c4d6;
  font-size: 1rem;
}

/* Track Card */
.track {
  background: #ffffff;
  border-left: 5px solid #c0392b;
  padding: 20px 25px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.track:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

/* Track Number */
.track-number {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c0392b;
  margin-bottom: 6px;
  font-weight: bold;
}

/* Track Title */
.track h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

/* Paragraphs */
.track p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Highlight Lines */
.track strong {
  display: block;
  margin-top: 10px;
  color: #000;
  font-weight: 600;
}

/* Intro Block */
.intro {
  background: #ffffff;
  padding: 22px 25px;
  border-left: 5px solid #c0392b;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.intro p {
  margin: 0;
  color: #444;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Closing Section */
.closing {
  background: #f4f4f4;
  padding: 25px;
  border-top: 4px solid #8b2e1f;
  border-radius: 10px;
  margin-top: 30px;
}

.closing h2 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.closing em {
  display: block;
  margin-top: 10px;
  color: #555;
  font-style: italic;
}
.track:nth-child(even) {
  border-left-color: #8b2e1f;
}
