/* Contact Form Send Button Styles */
.contact-submit {
  background: linear-gradient(90deg, #6c63ff 0%, #06cc9e 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.85rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(6,204,158,0.10);
  margin-top: 18px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.contact-submit:hover, .contact-submit:focus {
  background: linear-gradient(90deg, #06cc9e 0%, #6c63ff 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px rgba(6,204,158,0.18);
  outline: none;
}
/* Floating theme toggle button */
.theme-toggle {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 2000;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.theme-toggle:hover {
  background: #02b308;
  color: #fff;
}
body.dark-mode {
  background: #181824;
  color: #e0e0e0;
}
body.dark-mode .navbar, body.dark-mode .dropdown-nav, body.dark-mode .footer-content, body.dark-mode .footer-bottom {
  background: #22223b !important;
  color: #e0e0e0 !important;
}
body.dark-mode .nav-tabs li a, body.dark-mode .nav-tabs li a:visited {
  color: #e0e0e0 !important;
}
body.dark-mode .container, body.dark-mode .about, body.dark-mode .biography, body.dark-mode .achievements, body.dark-mode .skills, body.dark-mode .testimonials, body.dark-mode .team {
  background: #181824 !important;
  color: #e0e0e0 !important;
}
body.dark-mode .testimonial-item, body.dark-mode .team-member {
  background: #22223b !important;
  color: #e0e0e0 !important;
}
body.dark-mode .theme-toggle {
  background: #efeeff;
  color: #fff;
}
/* Enhanced Testimonial Section Styles */
.testimonials {
  background: #f8f8fc;
  padding: 48px 0 32px 0;
}
.testimonials h2 {
  text-align: center;
  color: #222;
  font-size: 2rem;
  margin-bottom: 32px;
  font-weight: 600;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.testimonial-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 32px 28px 24px 28px;
  margin: 0 auto;
  max-width: 340px;
  min-width: 260px;
  text-align: center;
  position: relative;
  border-top: 6px solid #6c63ff;
  transition: box-shadow 0.2s;
}
.testimonial-item:hover {
  box-shadow: 0 4px 24px rgba(108,99,255,0.12);
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 2px solid #6c63ff;
  background: #eee;
}
.testimonial-item p {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 12px;
  font-style: italic;
}
.testimonial-item span {
  display: block;
  color: #6c63ff;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 8px;
}
.testimonials .testimonial-item:before {
  content: '\201C';
  font-size: 2.2rem;
  color: #e0e0e0;
  position: absolute;
  left: 18px;
  top: 12px;
}
.testimonials .testimonial-item:after {
  content: '\201D';
  font-size: 2.2rem;
  color: #e0e0e0;
  position: absolute;
  right: 18px;
  bottom: 12px;
}
@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .testimonial-item {
    max-width: 98vw;
    min-width: 0;
    padding: 18px 10px;
  }
  .testimonials h2 {
    font-size: 1.3rem;
  }
}
/* Music Page Specific Styles */
.music-list .track-info .song-link {
    color: #008000; /* Green */
    text-decoration: none;
}

.music-list .track-info .song-link:hover {
    color: #006400; /* Darker Green */
}

/* Testimonial Section Styles */
.testimonials {
  background: #f8f8fc;
  padding: 48px 0 32px 0;
}
.testimonials h2 {
  text-align: center;
  color: #222;
  font-size: 2rem;
  margin-bottom: 32px;
  font-weight: 600;
}
.testimonial-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 24px 32px;
  margin: 18px auto;
  max-width: 600px;
  text-align: left;
  position: relative;
}
.testimonial-item p, .testimonial p {
  font-size: 1.15rem;
  color: #000;
  margin-bottom: 12px;
  font-style: italic;
}

.testimonial h4 {
    color: #000;
}
.testimonial-item span {
  display: block;
  color: #6c63ff;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 8px;
}
.testimonials .testimonial-item:before {
  content: '\201C';
  font-size: 3rem;
  color: #e0e0e0;
  position: absolute;
  left: 16px;
  top: 8px;
}
.testimonials .testimonial-item:after {
  content: '\201D';
  font-size: 3rem;
  color: #e0e0e0;
  position: absolute;
  right: 16px;
  bottom: 8px;
}
@media (max-width: 600px) {
  .testimonial-item {
    padding: 18px 12px;
    max-width: 98vw;
  }
  .testimonials h2 {
    font-size: 1.3rem;
  }
}

/* Portfolio Page Styles */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding-top: 2rem;
}

.portfolio-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: center;
    padding-bottom: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.portfolio-item h3 {
    font-size: 1.25rem;
    margin: 1rem 0 0.5rem;
    color: #222;
}

.portfolio-item .category {
    font-size: 0.9rem;
    color: #6c63ff;
    font-weight: 500;
    text-transform: uppercase;
}

.portfolio-item .description {
    font-size: 1rem;
    color: #555;
    margin: 0.5rem 1rem;
}

.portfolio-audio {
    width: calc(100% - 2rem);
    margin: 1rem auto 0;
}

/* Dark Mode Portfolio */
body.dark-mode .portfolio-item {
    background: #22223b;
}

body.dark-mode .portfolio-item h3,
body.dark-mode .portfolio-item .description {
    color: #e0e0e0;
}
/* Mobile navbar dropdown and visibility support */
@media (max-width: 900px) {
  .navbar .nav-tabs {
    display: none;
    flex-direction: column;
    background: #222;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  .navbar .nav-tabs.show {
    display: flex;
  }
  .navbar .dropdown-toggle {
    display: block;
    background: #222;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    width: 100%;
    text-align: left;
  }
  .navbar .nav-tabs li {
    margin: 0;
    border-bottom: 1px solid #333;
  }
  .navbar .nav-tabs li a {
    color: #fff;
    padding: 16px 24px;
    display: block;
    width: 100%;
    font-size: 1.1rem;
  }
}
/* Dropdown Navbar Styles */
.dropdown-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown-toggle {
    display: none;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 6px;
    padding: 0.7rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-right: 1rem;
}
@media (max-width: 800px) {
    .dropdown-toggle {
        display: block;
    }
    .nav-tabs {
        display: none;
        position: absolute;
        top: 48px;
        left: 0;
        width: 100vw;
        background: var(--secondary-color);
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        border-radius: 0 0 12px 12px;
        z-index: 999;
        flex-direction: column;
        padding: 1rem 0;
    }
    .nav-tabs.show {
        display: flex;
    }
    .nav-tabs li {
        margin: 1rem 0;
    }
}
/* Horizontal Tabs Navbar */
.nav-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    background: var(--secondary-color);
    border-radius: 8px;
    margin: 0;
    padding: 0.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.nav-tabs li {
    margin: 0 0.5rem;
}
.tab-link {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px 6px 0 0;
    background: transparent;
    transition: background 0.2s, color 0.2s;
}
.tab-link:hover, .tab-link.active {
    background: var(--accent-color);
    color: var(--primary-color);
}
@media (max-width: 800px) {
    .nav-tabs {
        flex-direction: column;
        border-radius: 8px;
        box-shadow: none;
    }
    .tab-link {
        border-radius: 6px;
        margin-bottom: 4px;
    }
}
/* Responsive Portfolio Section */
@media (max-width: 800px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .portfolio-item-image,
    .portfolio-item-overlay {
        width: 100%;
        height: auto;
        min-width: 0;
        max-width: 320px;
        margin: 0 auto 10px;
    }
    .portfolio-image {
        max-width: 90vw;
    }
}
/* Dropdown style for mobile navbar */
.nav-links {
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    max-height: 1000px;
    opacity: 1;
}
.nav-links:not(.nav-active) {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}
@media (max-width: 800px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 60px;
        background: var(--secondary-color);
        flex-direction: column;
        width: 100vw;
        max-width: 320px;
        text-align: left;
        padding: 2rem 1rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        z-index: 999;
        border-radius: 0 0 12px 12px;
    }
    .nav-links li {
        margin: 1rem 0;
    }
}
/* Mobile Navbar Styles */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    margin-left: 1rem;
}
.burger div {
    width: 28px;
    height: 4px;
    background: var(--accent-color);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
}
@media (max-width: 800px) {
    .burger {
        display: flex;
    }
    .nav-links {
        position: absolute;
        right: 0;
        top: 60px;
        background: var(--secondary-color);
        flex-direction: column;
        width: 100vw;
        max-width: 320px;
        text-align: left;
        padding: 2rem 1rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        display: none;
        z-index: 999;
    }
    .nav-links.nav-active {
        display: flex;
    }
    .nav-links li {
        margin: 1rem 0;
    }
    .navbar {
        flex-direction: row;
        align-items: center;
        padding: 1rem 1rem;
    }
    .logo {
        font-size: 1.2rem;
    }
}
.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-6px, 6px);
}
.burger.toggle .line2 {
    opacity: 0;
}
.burger.toggle .line3 {
    transform: rotate(45deg) translate(-6px, -6px);
}
/* Song Page Responsive Styles */
.song-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
}

/* Prevent content from hiding behind navbar on song page */
.song-details {
    margin-top: 100px; /* Height of navbar + some spacing */
}

/* Song stats styling */
.song-stats {
    margin-top: 18px;
    display: flex;
    gap: 2rem;
    align-items: center;
    font-size: 1.08rem;
    color: #222;
}
.song-stats #views-num,
.song-stats #downloads-num {
    color: #06cc9e;
    font-weight: bold;
}
}
@media (max-width: 800px) {
    .song-stats {
        flex-direction: column;
        gap: 0.7rem;
        align-items: flex-start;
        font-size: 1rem;
    }
}
.song-audio {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: block;
    height: 64px;
    font-size: 1.25rem;
    background: #f8f8fc;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(6,204,158,0.10);
    padding: 8px 0;
    border: 3px solid #06a120;
    outline: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: #06cc9e33;
    transition: border 0.2s, box-shadow 0.2s;
}
/* Style audio controls for better mobile UX */
.song-audio::-webkit-media-controls-panel {
    background-color: #f8f8fc;
    border-radius: 16px;
}
.song-audio:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 0 2px #6c63ff44;
}
}
.song-actions {
    margin-top: 16px;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
@media (max-width: 800px) {
    .song-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .song-audio {
        max-width: 100%;
        height: 56px;
        font-size: 1.1rem;
        border-radius: 14px;
        padding: 6px 0;
    }
    .song-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    #song-info img {
        max-width: 90vw;
    }
}
/* Global Styles */
:root {
    --primary-color: #0d0d0d;
    --secondary-color: #181818;
    --accent-color: #00ff5e;
    --text-color: #ffffff;
    --text-secondary: #22ff00;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #06cc9e;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 1.5rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content {
    z-index: 1;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgb(0, 159, 98);
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--secondary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-links {
    margin-top: 2rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: var(--transition);
}

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

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 700px) {
  .portfolio-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Studio Section */
.studio {
    padding: 6rem 0;
    background-color: var(--secondary-color);
}

.studio-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.gear-list ul {
    list-style: none;
    margin-top: 1rem;
}

.gear-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.gear-list li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Press Section */
.press {
    padding: 6rem 0;
}

.press-article img {
    width: 120px;      /* Adjust width as needed */
    height: auto;      /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: rounded corners */
    margin-bottom: 10px;
    display: block;
    object-fit: cover;
}


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

/* Blog Section */
.blog {
    padding: 6rem 0;
    background-color: var(--secondary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: var(--secondary-color);
    border: none;
    border-radius: 5px;
    color: var(--text-color);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.3);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .studio-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 1rem;
    }

    .footer-links a {
        margin: 0 0.5rem;
    }
}

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

.hero-content,
.about-content,
.portfolio-grid,
.studio-content,
.press-grid,
.blog-grid {
    animation: fadeIn 1s ease-out;
}

/* Styles the image within the portfolio item */
.portfolio-image {
  max-width: 150px;  /* Limits the maximum width */
  width: 100%;       /* Ensures the image takes up available space when smaller */
  height: auto;      /* Maintains aspect ratio */
  display: block;    /* Removes unwanted inline spacing */
  margin: 0 auto;    /* Centers the image in its container, if applicable */
}
@media (max-width: 600px) {
  .portfolio-image {
    max-width: 100px;
  }
}
.portfolio-image {
  transition: transform 0.3s ease;
}

.portfolio-image:hover {
  transform: scale(1.1);
}
/* Style the portfolio grid container as a 4-column grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Create 4 equal columns */
  gap: 20px;      /* Gap between grid items */
  padding: 20px;  /* Optional padding */
}

/* Style each portfolio item container */
.portfolio-item {
  background: #000000;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  text-align: center;
  margin-bottom: 30px;
}

/* Limit the size of the artwork images */
.portfolio-item-image {
  width: 150px;   /* Fixed width for the image container */
  height: 200px;  /* Fixed height for the image container */
  margin: 0 auto 10px; /* Center the container and add bottom margin */
  overflow: hidden;
  border-radius: 4px;
}

/* Ensure the actual image scales nicely inside the container */
.portfolio-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crop the image to fill the container without distortion */
}
/* Ensure the image container remains as defined */
.portfolio-item-image {
  width: 150px;   /* Fixed width for the image container */
  height: 200px;  /* Fixed height for the image container */
  margin: 0 auto 10px; /* Center the container and add bottom margin */
  overflow: hidden;
  border-radius: 4px;
}

/* If you want the overlay to appear over or below the image,
   adjust its structure accordingly. Here we assume the overlay
   is separate and is sized exactly like the image container. */
.portfolio-item-overlay {
  width: 150px;              /* Same width as the image container */
  height: 200px;             /* Same height as the image container */
  display: flex;             /* Use flexbox to center the audio control */
  justify-content: center;   /* Center horizontally */
  align-items: center;       /* Center vertically */
  background: rgba(0, 0, 0, 0.7);  /* Semi-transparent background for contrast */
  border-radius: 4px;
  margin: 0 auto 10px;       /* Center and add bottom margin */
  box-sizing: border-box;    /* Include padding/border in width/height */
}

/* Style the audio control to fill the overlay */
.portfolio-item-overlay audio {
  width: 100% !important;    /* Full width of the overlay container */
  height: 100% !important;   /* Full height of the overlay container */
  display: block;
  border: none;              /* Remove any default border */
  outline: none;             /* Remove default outline */
}
/* Override the blog grid to force exactly 3 columns */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 20px;      /* Adjust spacing between blog posts as needed */
  margin-top: 3rem;
}

/* Style each blog post image container */
.blog-post-image {
  display: flex;
  justify-content: center;
  align-items: center;
  /* Optional: add a fixed height if you want all images to align uniformly */
  /* height: 150px; */
}

/* Make the blog post images small */
.blog-post-image img {
  width: 120px;    /* Adjust value as needed for a smaller image */
  height: auto;    /* Maintain aspect ratio */
  object-fit: contain;  /* Ensure the image fits inside the given width */
  border-radius: 4px;   /* Optional: add rounded corners */
}

.portfolio-item audio {
    width: 100%;
    margin: 10px 0;
}

.share-buttons button {
    background: #06cc9e;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 8px;
}

.share-buttons button:hover {
    background: #049e7a;
}

.music-list .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 32px 0;
}

.music-track {
    background: #352c2c;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.music-track .track-cover {
    width: 90px;      /* Smaller image */
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.music-track h3 {
    font-size: 1rem;
    margin: 8px 0;
}

.music-track audio {
    width: 100%;
    margin: 10px 0;
}

@media (max-width: 1024px) {
    .music-list .container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .music-list .container {
        grid-template-columns: 1fr;
    }
}

/* Fade-in animation for music tracks */
.music-track {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.7s ease forwards;
    animation-delay: 0.2s;
    transition: box-shadow 0.3s, transform 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for each track */
.music-track:nth-child(1) { animation-delay: 0.1s; }
.music-track:nth-child(2) { animation-delay: 0.2s; }
.music-track:nth-child(3) { animation-delay: 0.3s; }
.music-track:nth-child(4) { animation-delay: 0.4s; }
/* Add more as needed */

/* Hover effect for track covers */
.music-track .track-cover {
    transition: transform 0.3s, box-shadow 0.3s;
}
.music-track:hover .track-cover {
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 8px 24px rgba(6,204,158,0.15);
}

/* Hover effect for share button */
.share-btn {
    transition: background 0.3s, transform 0.2s;
}
.share-btn:hover {
    background: #049e7a;
    transform: scale(1.08);
}

/* Responsive grid for music tracks */
.music-list .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 32px 0;
}

@media (max-width: 1024px) {
    .music-list .container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .music-list .container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 16px 0;
    }
}

/* Make images and audio players fluid */
.music-track .track-cover {
    width: 90px;
    height: 90px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}
.music-track audio {
    width: 100%;
    min-width: 0;
}

/* Responsive navbar */
.navbar {
    flex-wrap: wrap;
    padding: 10px 5vw;
}
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.nav-links li {
    list-style: none;
}
.nav-links a {
    padding: 8px 12px;
    display: block;
    font-size: 1rem;
}
.nav-search-bar {
    margin-top: 10px;
    width: 100%;
    text-align: right;
}
@media (max-width: 800px) {
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-search-bar {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: left;
    }
}

/* General responsive text */
body, .music-track h3, .music-track p, .footer-content, .footer-bottom {
    font-size: 1rem;
}
@media (max-width: 600px) {
    body, .music-track h3, .music-track p, .footer-content, .footer-bottom {
        font-size: 0.95rem;
    }
}