* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #f7f1e8;
  background: #120d0a;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(22, 14, 10, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 139, 70, 0.22);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  color: #f4e9d8;
  text-shadow:
    0 0 8px rgba(255, 180, 110, 0.18),
    0 0 18px rgba(255, 120, 60, 0.12);
}
.logo-link {
  display: inline-block;
  line-height: 0;
}

.site-logo-image {
  display: block;
  max-height: 52px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(255, 180, 110, 0.16))
          drop-shadow(0 0 12px rgba(255, 120, 60, 0.10));
}

.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #e2d4c3;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffcb8a;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-home {
  background:
    linear-gradient(rgba(18, 10, 7, 0.48), rgba(18, 10, 7, 0.76)),
    url("Images/country-mile-hero.png") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 176, 92, 0.12), transparent 40%),
    linear-gradient(240deg, rgba(255, 112, 52, 0.10), transparent 40%);
}

.hero-content {
  position: relative;
  padding: 90px 0;
  max-width: 760px;
}

.eyebrow {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffcc8c;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1;
  margin-bottom: 20px;
  color: #fff3df;
  text-shadow:
    0 0 10px rgba(255, 178, 97, 0.18),
    0 0 20px rgba(125, 55, 22, 0.18);
}

.hero-text {
  max-width: 640px;
  font-size: 1.1rem;
  color: #f0e4d5;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-logo-wrap {
  margin-bottom: 20px;
}

.hero-logo {
  display: block;
  max-width: min(820px, 90%);
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255, 180, 110, 0.18))
          drop-shadow(0 0 18px rgba(255, 120, 60, 0.14));
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(90deg, #c96c2b, #f0a14a);
  color: #fff;
  box-shadow: 0 0 20px rgba(201, 108, 43, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(240, 161, 74, 0.38);
  background: rgba(255, 255, 255, 0.05);
  color: #fff4e6;
}

.intro-section,
.featured-section,
.content-section {
  padding: 70px 0;
}

.alt-section {
  background: rgba(255, 255, 255, 0.02);
}

.two-column {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
}

.intro-section h2,
.featured-section h2,
.content-panel h2,
.single-panel h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #fff1dd;
}

.intro-section p,
.content-panel p,
.single-panel p {
  margin-bottom: 14px;
  color: #e7dacb;
}

.info-card,
.track-card,
.content-panel,
.single-panel {
  background: linear-gradient(180deg, rgba(47, 28, 19, 0.95), rgba(24, 15, 11, 0.95));
  border: 1px solid rgba(201, 139, 70, 0.18);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
}

.info-card h3,
.theme-box h3 {
  margin-bottom: 14px;
  color: #ffcc8c;
}

.info-card ul,
.contact-list {
  padding-left: 18px;
  color: #eadfce;
}

.info-card li,
.contact-list li {
  margin-bottom: 8px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card-image,
.music-art,
.gallery-image {
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.card-image {
  height: 180px;
  margin-bottom: 16px;
}

.track-card h3,
.music-copy h3,
.gallery-card figcaption {
  color: #fff1dd;
}

.track-card p,
.music-copy p {
  color: #e2d4c3;
}

.placeholder.one {
  background:
    linear-gradient(135deg, rgba(255, 170, 90, 0.45), rgba(110, 48, 22, 0.28)),
    #2b1a14;
}

.placeholder.two {
  background:
    linear-gradient(135deg, rgba(255, 122, 70, 0.42), rgba(91, 52, 29, 0.28)),
    #2b1a14;
}

.placeholder.three {
  background:
    linear-gradient(135deg, rgba(255, 203, 140, 0.34), rgba(128, 66, 31, 0.26)),
    #2b1a14;
}

.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-home,
.page-hero-about,
.page-hero-music,
.page-hero-gallery,
.page-hero-contact {
  background:
    linear-gradient(rgba(18, 10, 7, 0.56), rgba(18, 10, 7, 0.78)),
    url("Images/country-mile-hero.png") center center / cover no-repeat;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 176, 92, 0.10), transparent 40%),
    linear-gradient(240deg, rgba(255, 112, 52, 0.10), transparent 40%);
}

.page-hero-content {
  position: relative;
  padding: 70px 0;
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.05;
  margin-bottom: 18px;
  color: #fff1dd;
}

.page-hero p {
  max-width: 620px;
  color: #f0e4d5;
  font-size: 1.05rem;
}

.section-intro {
  margin-bottom: 24px;
}

.music-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 24px;
}

.music-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 139, 70, 0.15);
  border-radius: 14px;
  padding: 18px;
}

.music-art {
  height: 180px;
}

.text-link {
  color: #ffcc8c;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.text-link:hover {
  color: #ffe2ba;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.gallery-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 139, 70, 0.15);
  border-radius: 14px;
  padding: 14px;
}

.gallery-image {
  height: 240px;
  margin-bottom: 12px;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.theme-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 139, 70, 0.15);
  border-radius: 14px;
  padding: 20px;
}

.contact-form {
  margin-top: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-row label {
  margin-bottom: 8px;
  color: #ffcc8c;
  font-weight: bold;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(201, 139, 70, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #fff2e1;
  font: inherit;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #bba996;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 1px solid rgba(255, 203, 140, 0.5);
  border-color: rgba(255, 203, 140, 0.5);
}

.site-footer {
  border-top: 1px solid rgba(201, 139, 70, 0.18);
  background: #100b08;
  padding: 24px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #cdb9a8;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .two-column,
  .card-grid,
  .gallery-grid,
  .theme-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .music-item {
    grid-template-columns: 1fr;
  }

  .music-art {
    height: 220px;
  }
}

@media (max-width: 700px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero {
    min-height: 68vh;
  }

  .hero-content {
    padding: 70px 0;
  }
}
.country-road-house {
  background: url("Images/road-house-blues.png") center center / cover no-repeat;
}

.country-fender {
  background: url("Images/fender-bender-blues.png") center center / cover no-repeat;
}

.country-lead {
  background: url("Images/wherever-you-lead.png") center center / cover no-repeat;
}

.country-tender {
  background: url("Images/tender-love.png") center center / cover no-repeat;
}

.country-dollars {
  background: url("Images/more-dollars-than-sense.png") center center / cover no-repeat;
}

.country-stay-loose {
  background: url("Images/stay-loose.png") center center / cover no-repeat;
}
.gallery-road-house {
  background: url("Images/road-house-blues.png") center center / cover no-repeat;
}

.gallery-fender {
  background: url("Images/fender-bender-blues.png") center center / cover no-repeat;
}

.gallery-lead {
  background: url("Images/wherever-you-lead.png") center center / cover no-repeat;
}

.gallery-tender {
  background: url("Images/tender-love.png") center center / cover no-repeat;
}

.gallery-dollars {
  background: url("Images/more-dollars-than-sense.png") center center / cover no-repeat;
}

.gallery-stay-loose {
  background: url("Images/stay-loose.png") center center / cover no-repeat;
}