/* Minimalist Audio Library Styles */
@import url('../index.css');
/* Horizontal Audio Navigation */
.audio-horizontal-nav {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 2rem 0;
  border-radius: 10px;
  padding: 1rem 5rem;
}
.audio-horizontal-nav .sidebar-nav-btn {
  background: var(--brand-secondary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-family: var(--font-primary);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(45,108,223,0.04);
}
.audio-horizontal-nav .sidebar-nav-btn.active,
.audio-horizontal-nav .sidebar-nav-btn:focus {
  background: var(--brand-primary);
  color: #222;
  box-shadow: 0 4px 16px rgba(45,108,223,0.10);
}
.audio-horizontal-nav .sidebar-nav-btn:hover {
  background: #c23a4a;
  color: #fff;
}
@media (max-width: 600px) {
  .audio-horizontal-nav {
    flex-direction: column;
    gap: 0.7rem;
    padding: 1rem 1rem;
  }
  .audio-horizontal-nav .sidebar-nav-btn {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
  }
}

/* Navigation Styles */
.navbar {
    background: #982037;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.nav-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 7rem;
        flex-direction: column;
        background-color: #982037;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
}

.audio-hero {
  background: linear-gradient(120deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  color: var(--white);
  padding: 4rem 1rem 2.5rem 1rem;
  text-align: center;
  border-bottom: 0;
  position: relative;
  overflow: hidden;
}
.audio-hero .hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.audio-hero h1 {
  font-size: 2.7rem;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(45,108,223,0.13);
}
.audio-hero .subtitle {
  color: #f7e7e7;
  font-size: 1.2rem;
  margin-bottom: 0;
  opacity: 0.95;
}
.audio-hero::before {
  content: '';
  position: absolute;
  left: -30%;
  top: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle at 60% 40%, #fff2, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.audio-main-layout {
  display: flex;
  min-height: 100vh;
  background: #222;
}
.audio-sidebar {
  width: 260px;
  min-width: 200px;
  max-width: 320px;
  background: var(--brand-secondary);
  border-right: 1px solid #000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 3rem 2rem 3rem 2.5rem;
  min-height: 100vh;
  box-shadow: 4px 0 24px rgba(45,108,223,0.06);
  position: sticky;
}
.audio-sidebar-title {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 2.8rem;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  padding-left: 0.2rem;
}
.audio-sidebar nav {
  width: 100%;
}
.sidebar-nav-btn {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--border-light);
  color: var(--brand-secondary);
  font-size: 1.08rem;
  font-family: var(--font-primary);
  font-weight: 600;
  padding: 1.2rem 1.5rem;
  text-align: left;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.18s;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(45,108,223,0.04);
  outline: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.sidebar-nav-btn.active,
.sidebar-nav-btn:focus {
  background: #fff;
  color: var(--brand-primary);
  border-color: #fff;
  box-shadow: 0 4px 16px rgba(45,108,223,0.10);
}
.sidebar-nav-btn:hover {
  background: #f7f7f9;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.audio-library {
  flex: 1 1 0;
  padding-left: 0;
  margin-left: 0;
  min-width: 0;
  background: var(--bg-secondary);
  padding: 2.5rem 1rem 4rem 1rem;
}

.section-description {
  color: var(--brand-secondary);
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.audios-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.audio-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid var(--border-light);
  transition: box-shadow 0.2s, transform 0.2s;
  gap: 1.2rem;
}
.audio-card-top {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 2rem;
  width: 100%;
  flex-wrap: nowrap;
}
.audio-card:hover {
  box-shadow: 0 8px 32px rgba(45,108,223,0.08);
  transform: translateY(-2px) scale(1.01);
  border-color: var(--brand-primary);
}

.audio-title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: var(--brand-secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.audio-description {
  font-family: var(--font-accent);
  color: var(--text-secondary);
  font-size: 0.97rem;
  margin-bottom: 1rem;
}

.audio-player {
  width: 100%;
  margin-top: 0.5rem;
}
.audio-player-row {
  width: 100%;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
}

.audio-cover {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(45,108,223,0.07);
  flex-shrink: 0;
  margin-bottom: 0;
}
.audio-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}
.audio-card:hover .audio-cover img {
  transform: scale(1.04);
}

.audio-card-content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Search/filter bar (future use) */
.audio-search-bar {
  max-width: 500px;
  margin: 0 auto 2.5rem auto;
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(45,108,223,0.06);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-light);
}
.audio-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
  color: var(--text-primary);
  padding: 0.7rem 0.5rem;
}
.audio-search-bar button {
  background: var(--brand-primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  cursor: pointer;
  margin-left: 0.5rem;
  transition: background 0.2s;
}
.audio-search-bar button:hover {
  background: var(--brand-secondary);
}

.audio-download-btn {
  display: flex;
  justify-content: flex-end;
  width: 30%;
  margin-top: 0.7rem;
  text-decoration: none;
}
.audio-download-btn button {
  width: 100%;
  background: var(--brand-secondary);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.6rem 0;
  font-size: 1rem;
  font-family: var(--font-accent);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(45,108,223,0.06);
  outline: none;
  text-decoration: none;
}
.audio-download-btn button:hover, .audio-download-btn button:focus {
  background: var(--brand-secondary);
  box-shadow: 0 4px 16px rgba(152,32,55,0.10);
}



@media (max-width: 900px) {
  .audio-main-layout {
    flex-direction: column;
  }
  .audio-library {
    padding: 1.5rem 0.5rem 4rem 0.5rem;
  }
}

@media (max-width: 700px) {
  .audio-hero h1 {
    font-size: 1.7rem;
  }
  .audio-hero .subtitle {
    font-size: 1rem;
  }
  .audio-card-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .audio-cover {
    width: 100%;
    height: 110px;
    margin-bottom: 1rem;
  }
  .audio-card-content {
    width: 100%;
  }
  .audios-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .audio-card {
    padding: 1rem 0.7rem;
  }
  .audio-player {
    width: 100%;
  }
  .audio-player-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .audio-download-btn {
    width: 100%;
    margin-top: 0.7rem;
  }
  .audio-download-btn button {
    width: 100%;
  }
}

/* Footer Styles */
.site-footer {
  background:var(--brand-secondary);
  padding: 3rem 1rem 1rem 1rem;
  border-top: 0px solid var(--brand-secondary);
}
/* Improved mobile layout for audio cover and card */
@media (max-width: 600px) {
  .audio-card {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }
  .audio-card-top {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }
  .audio-cover {
    width: 80vw;
    max-width: 300px;
    height: auto;
    margin-bottom: 1rem;
  }
  .audio-cover img {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    object-fit: cover;
  }
  .audio-card-content {
    text-align: center;
    width: 100%;
  }
  .audio-player-row {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .audio-download-btn {
    width: 100%;
    margin-top: 0.7rem;
    justify-content: center;
  }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section {
  text-align: left;
  padding: 0 1rem;
}

.footer-section:nth-child(2) {
  padding-left: 4rem;
}

@media (max-width: 768px) {
  .footer-section:nth-child(2) {
    padding-left: 1rem;
  }
}

.footer-title {
  font-family: var(--font-primary);
  color: var(--brand-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-description {
  font-family: var(--font-accent);
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  font-family: var(--font-accent);
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.social-link:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.social-link i {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-family: var(--font-accent);
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand-primary);
}

.contact-info p {
  font-family: var(--font-accent);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-section p {
  font-family: var(--font-accent);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: var(--font-accent);
}

.newsletter-btn {
  background: var(--brand-secondary);
  color: var(--white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-family: var(--font-accent);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletter-btn:hover {
  background: var(--brand-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-family: var(--font-accent);
  color: var(--white);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-legal a {
  font-family: var(--font-accent);
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--brand-primary);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}