/* home.css */
/* Logo / header */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: var(--base-3);
    color: var(--contrast);
    border-bottom: 1px solid var(--contrast-3);
}

.site-branding-container {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.site-logo-link img.header-image {
    width: 150px;    /* original desktop size */
    height: auto;    /* maintain aspect ratio */
    object-fit: contain;
    display: block;
}

/* Responsive mobile adjustments */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .site-branding-container {
        gap: 10px;
    }
    .site-logo-link img.header-image {
        width: 150px;
    }
}

.album-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    list-style: none;
    justify-content: center;
}

.album-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    box-sizing: border-box;
    overflow: hidden;
    padding: 20px;
    border-bottom: 1px solid #cfc7c7;
}

.album-title {
    margin: 5px 0 0;
    font-size: 16px;
}

.album-artists {
    margin: 0;
    font-size: 12px;
    color: #555;
}

/* Responsive adjustments */
@media (max-width:1024px){
    .grid-layout .album-item {
        width: 140px;
    }
}

@media (max-width:768px){
    .grid-layout {
        justify-content: center;
    }

    .grid-layout .album-item {
        width: 45%;
        max-width: 150px;
        padding: 15px;
    }
}

@media (max-width:480px){
    .grid-layout .album-item {
        width: 70%;
        padding: 10px;
    }
}
/* SONG/ALBUM GRID */

.list.grid-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    list-style: none;
    justify-content: center;
}

.list.grid-layout li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    box-sizing: border-box;
    overflow: hidden;
    padding: 20px;
    border-bottom: 1px solid #cfc7c7;
}

.list.grid-layout li a {
    text-decoration: none;
    color: inherit;
    text-align: center;
}

.list.grid-layout li img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.list.grid-layout li .song-info {
    margin: 5px 0 0 0;
    font-size: 16px;
}

.list.grid-layout li .song-artists {
    margin: 0;
    font-size: 12px;
    color: #555;
}
/* Songs Section */
.song-item {
    padding: 10px 0 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    box-sizing: border-box;
    overflow: hidden;
    border-bottom: 1px solid #cfc7c7;
}

/* Optional: adjust image and text inside */
.song-item img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin: 0;
    display: block;
}

.song-item .b.bk {
    margin: 5px 0 0 0;
    font-size: 16px;
    text-align: center;
}

.song-item .bk.s {
    margin: 0;
    font-size: 12px;
    color: #555;
    text-align: center;
}
#recent-songs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 0;
    list-style: none;
}

.recent-song-item {
    width: 150px;
    padding: 5px;
    border-bottom: 1px solid #cfc7c7;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recent-song-item a {
    text-align: center;
    color: inherit;
    text-decoration: none;
    width: 100%;
}

.recent-song-item img {
    width: 80%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.recent-song-item p {
    margin: 8px 0 2px;
    font-size: 16px;
    text-align: center;
}

.load-more-category {
    text-align: center;
    margin: 20px 0;
}

.load-more-category button {
    display: inline-block;
    padding: 10px 25px;
    font-size: 16px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    min-width: 150px;
    text-align: center;
}
/* Home categories list */
.home-categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.home-category-item {
    padding: 8px 12px;
    border-right: 1px solid #ddd;
}

.home-category-item:last-child {
    border-right: none;
}

.home-category-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.home-category-icon {
    width: 36px;
    height: 36px;
}

.home-category-name {
    margin: 0;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .list.grid-layout li {
        width: 140px;
    }
}

@media (max-width: 768px) {
    .list.grid-layout li {
        width: 45%;
        max-width: 150px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .list.grid-layout li {
        width: 70%;
        padding: 10px;
    }
}
/* Footer Variables */
.site-footer {
    background: var(--base-2);
    padding-top: 40px;
}

.site-footer .grid-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.inside-footer-widgets {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

/* Footer Headings */
.site-footer h2 {
    font-size: 20px;
    margin-bottom: 12px;
}

/* Footer Text */
.site-footer p {
    font-size: 15px;
    color: var(--contrast-2);
}

/* Footer Menu */
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    padding: 12px 0;
    border-bottom: 1px solid #333;
    font-size: 16px;
    margin-bottom: 0; /* already handled by padding & border */
}

.site-footer a {
    text-decoration: none;
    color: var(--contrast);
    font-size: 15px;
}

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

/* Bottom Footer */
.site-info {
    margin-top: 30px;
    background: var(--base);
    border-top: 1px solid #ddd;
    padding: 15px 0;
}

.copyright-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 16px;
    color: var(--contrast-2);
}

/* Responsive */
@media(max-width:768px){
    .inside-footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .copyright-bar {
        flex-direction: column;
        text-align: center;
    }
}
/* ------------------ Footer Flex/Grid ------------------ */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0 0 0;
}

.footer-column {
    flex: 1;
    padding: 0 15px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-nav a {
    display: block;
    color: #333;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

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

/* Footer responsiveness */
@media (min-width: 576px) { .footer-column { flex: 1 0 50%; } }
@media (min-width: 768px) { .footer-column { flex: 1 0 33.33%; } }
@media (min-width: 992px) { .footer-column { flex: 1 0 25%; } }
@media (max-width: 500px) { .footer-column { flex: 1 0 100%; } }

/* ------------------ Global Reset & Body ------------------ */
body {
    background: #ffffff;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img { vertical-align: middle; border: 0; }
a img, :link img, :visited img { border: none; }

html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, em, img, strong, b, u, i, center,
ol, ul, li, form, label, article, aside, details, embed, figure, figcaption, footer, 
header, hgroup, menu, nav, section, summary, time, mark, audio, video, td {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

/* ------------------ Typography & Utility ------------------ */
b { font-weight: bold; font-size: 16px; }
i { font: inherit; }
textarea { font-size: small; }
main { width: 100%; margin: 0 auto; }
.tCenter { text-align: center; padding: 5px; }
.vd { width: 100%; }
.bg { background: #fff; }
hr {
    background-color: #d2d2d2;
    border: none;
    height: 1px;
    margin: 2px 0;
    padding: 5px 0;
}
.heading {
    min-height: 28px;
    background: #000;
    color: #fff;
    padding: 8px 12px;
    font-weight: 600;
    line-height: 1.4;
    border-radius: 4px 4px 0 0;
}

/* ------------------ List / Table / Download Buttons ------------------ */
.list, .wlist { list-style: none; clear: both; background: #fff; padding: 0; margin: 0; }
.list li, .wlist li { overflow: hidden; padding: 10px 30px 10px 30px; border-bottom: 1px solid #cfc7c7; }
.list li:hover { box-shadow: 0 1px 8px rgba(0,0,0,0.45); cursor: pointer; }
.wlist li i { width: 40px; height: 44px; float: left; margin-top: -8px; }
.bk, .bk a { color: #333; text-decoration: none; }
.bk a:hover { text-decoration: underline; }
.dbutton {
    display: inline-block;
    background: linear-gradient(#ff1400, #946204);
    color: #fff;
    font-size: 13px;
    border-radius: 10px;
    padding: 5px 10px;
    margin: 5px;
}
.dbutton a { color: #fff; font-weight: normal; }
.tr { width: 100%; display: inline-table; }
.td { width: 22%; max-width: 120px; }
tr.tr td { border-bottom: 1px solid #d8cdd5; padding: 4px; }

/* ------------------ Navigation & Header ------------------ */
nav {
    display: inline-table;
    width: 100%;
    background: #4d4d4d;
    font-size: 17px;
    margin: 0 auto;
}
nav a {
    background: #4d4d4d;
    text-align: center;
    color: #fefefe;
    padding: 10px;
    display: inline-block;
    border: 1px solid #666;
    border-bottom: 0;
    float: left;
    text-decoration: none;
}
nav i { width: 15px; float: left; margin-left: -6px; }

header {
    width: 100%;
    background: #000;
    text-align: left;
    padding-left: 10px;
    padding-top: 4px;
    padding-bottom: 4px;
    box-sizing: border-box;
}
header a img { display: block; }

/* ------------------ Forms & Custom Search ------------------ */
.form-wrapper {
    width: 91%;
    margin-top: 6px;
    float: right;
}
.form-wrapper input {
    width: 66%;
    height: 30px;
    float: left;
    padding: 0 10px;
    border: none;
    border-radius: 3px 0 0 3px;
    font-size: 17px;
}
.form-wrapper button {
    width: 65px;
    height: 31px;
    border: none;
    color: #fff;
    background: #db0707;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
}

.search-wrapper { display: flex; justify-content: center; margin: 10px 10px; }
.custom-search-form {
    display: flex;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-radius: 40px;
    overflow: hidden;
    background: #fff;
}
.custom-search-form input {
    flex: 1;
    padding: 16px 18px;
    font-size: 16px;
    border: none;
    outline: none;
}
.custom-search-form button {
    padding: 0 25px;
    border: none;
    background: linear-gradient(#2305b0,#008997);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}
.custom-search-form button:hover { opacity: 0.9; }

/* ------------------ Buttons ------------------ */
.button {
    width: 50px;
    padding: 8px 25px;
    background: #33383b;
    color: #fff !important;
    border-radius: 10px;
    margin: 0 20px;
}
.button:hover { background: #888; }

/* ------------------ Misc / Google Custom Search ------------------ */
.imgs { transition: opacity 500ms ease-in-out 100ms; }
img.b-loaded { opacity: 1; width: auto; }

.gsc-cursor {
    margin-top: 20px;
    text-align: center;
}

.gsc-cursor-page {
    display: inline-block;
    padding: 6px 12px;
    margin: 4px;
    background: #f2f2f2;
    color: #333 !important;
    border-radius: 4px;
    font-size: 16px;
    text-decoration: none !important;
}

.gsc-cursor-page:hover {
    background: #ff3c00;
    color: #fff !important;
}

.gsc-cursor-current-page {
    background: #ff3c00 !important;
    color: #fff !important;
    font-weight: bold;
}

/* ------------------ Artist Text Overflow ------------------ */
.artistp {
    margin: 0;
    font-size: 16px;
    color: #555;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100%;
}
/* Year Filter */
.year-filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px 0;
}

.year-filter-label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: black;
}

.year-filter-select {
    font-size: 16px;
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
    min-width: 120px;
}

/* Load More Button */
.load_more_category {
    text-align: center;
    margin: 20px 0;
}

.btn-load-more {
    display: inline-block;
    padding: 10px 25px;
    font-size: 16px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    min-width: 150px;
    text-align: center;
    transition: 0.3s;
}

.btn-load-more:hover {
    background-color: #222;
}
.album-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
  }
  
  .song-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
  }
  
  .song-image {
    flex: 0 0 auto;
    width: 250px;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    border-radius: 8%;
  }
  
  /* Album details */
  .album-details,
  .song-details {
    flex: 1 1 300px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .album-container,
    .song-container {
      flex-direction: column;
      align-items: center;
    }
    .album-image,
    .song-image {
      width: 80%;
      max-width: 250px;
      margin-bottom: 20px;
    }
    .album-details {
      width: 100%;
      text-align: left;
    }
    .song-details {
      width: 100%;
      text-align: center;
    }
  }
  
  /* Download buttons */
  .dlbtn {
    background: linear-gradient(#2305b0, #008997);
    color: #ffffff;
    padding: 10px 26px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 120px;
    margin-right: 10px;
    margin-top: 10px;
    text-decoration: none;
  }
  
  .dlbtn:hover {
    background-color: #004494;
    color: #ffffff;
  }
  
  .dlbtn:active {
    background-color: #003d7a;
  }
  
  .dlbtn:focus {
    outline: 2px solid #ffbf00;
  }
  
  .dlbtn-320 {
    background: linear-gradient(#b00020, #ff0000);
  }
  
  .dlbtn-320:hover {
    background-color: #99001a;
  }
  
  /* Table adjustments */
  td {
    vertical-align: top;
  }
  
  td.song-overview,
  td.more-info pre {
    max-height: 200px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    padding: 5px;
    background-color: #f9f9f9;
    border-radius: 4px;
  }
  /* Albums grid layout */
.albums-wlist {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    list-style: none;
    justify-content: center;
}

.album-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.album-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.album-title {
    margin: 5px 0 0 0;
    text-align: center;
}

.album-artists {
    margin: 0;
    font-size: 12px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .album-item {
        width: 140px;
    }
}

@media (max-width: 768px) {
    .albums-wlist {
        justify-content: center;
    }
    .album-item {
        width: 45%;
        max-width: 180px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .album-item {
        width: 70%;
        padding: 10px;
    }
}
/* ------------------ ALBUM PAGE (reusable styles) ------------------ */

.album-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    margin: 20px 0;
}

/* Album image */
.album-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 8%;
    flex-shrink: 0;
}

/* Album details */
.album-details {
    flex: 1;
    min-width: 200px;
    overflow-x: auto;
}

/* Table styling */
.album-details table {
    width: auto;
    border-collapse: collapse;
}

.album-details td {
    padding: 8px;
}

.album-details td:first-child {
    font-weight: bold;
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
    .album-container {
        flex-direction: column;
        align-items: center;
    }

    .album-image {
        width: 90%;
        max-width: 250px;
        margin-bottom: 20px;
    }

    .album-details {
        width: 100%;
    }

    .album-details table td:first-child {
        width: 35%;
    }

    .album-details table td:last-child {
        width: 65%;
    }
}

@media (max-width: 480px) {
    .album-image {
        width: 90%;
        max-width: 250px;
        border-radius: 10%;
    }

    .album-details table td {
        font-size: 13px;
    }
}

/* ------------------ OTHER ALBUMS GRID ------------------ */

.albums-container ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    list-style: none;
    justify-content: center;
}

.album-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    box-sizing: border-box;
    overflow: hidden;
    padding: 20px;
    border-bottom: 1px solid #cfc7c7;
}

.album-card-img {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.album-card-title {
    margin: 5px 0 0;
    font-size: 16px;
}

.album-card-artists {
    margin: 0;
    font-size: 12px;
    color: #555;
}

/* Responsive */
@media (max-width: 1024px) {
    .album-card {
        width: 140px;
    }
}

@media (max-width: 768px) {
    .albums-container ul {
        justify-content: center;
    }

    .album-card {
        width: 45%;
        max-width: 150px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .album-card {
        width: 70%;
        padding: 10px;
    }
}
.year-selector-container {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px 0;
}

.year-selector-container > div {
    text-align: center;
}

.year-selector-container label {
    margin-bottom: 10px;
    font-weight: bold;
    color: black;
    display: block;
}

.year-selector-container select {
    font-size: 16px;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
    min-width: 150px;
}

/* Responsive */
@media (max-width: 768px) {
    .year-selector-container {
        flex-direction: column;
    }
}
/* ------------------ ALBUM GRID (CARD STYLE) ------------------ */

.albums-grid {
    padding: 0;
    list-style: none;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 15px;
}

.album-card-list {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}

.album-card-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 100%;
    color: inherit;
}

/* Image */
.album-card-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8%;
    flex-shrink: 0;
}

/* Background image variant */
.album-card-bg {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: 10%;
    flex-shrink: 0;
}

/* Text */
.album-card-content {
    margin-left: 12px;
    overflow: hidden;
    flex-grow: 1;
}

.album-card-title {
    margin: 0;
    font-size: 16px;
    color: #000;
}

.album-card-artist {
    margin: 2px 0 0;
    font-size: 12px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive */
@media (max-width: 768px) {
    .albums-grid {
        grid-template-columns: 1fr;
    }

    .album-card-thumb,
    .album-card-bg {
        width: 50px;
        height: 50px;
    }

    .album-card-content {
        margin-left: 10px;
    }

    .album-card-title {
        font-size: 12px;
    }

    .album-card-artist {
        font-size: 12px;
    }
}
.song-link {
    text-decoration: none;
    color: inherit;
    text-align: center;
    display: block;
}
/* ---------------- SONG GRID ---------------- */

.song-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    list-style: none;
    justify-content: center;
}

.song-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    text-align: center;
}

.song-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: block;
}

.song-item p {
    margin: 5px 0 0;
}

.song-title {
    font-size: 16px;
}

.song-artist {
    font-size: 14px;
    color: #555;
}
.song-album-home {
    font-size: 14px;
    color: #555;
}

/* ------------------ HEADER FLEX LAYOUT ------------------ */
.inside-header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* logo left, menu/hamburger right */
    gap: 25px; /* space between logo and nav */
    position: relative; /* for absolute positioning of mobile menu */
}

/* ------------------ MOBILE HAMBURGER ------------------ */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 5px;
}

.menu-toggle .hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #000; /* black lines */
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hover effect */
.menu-toggle:hover .hamburger-line {
    background-color: #ff3c00; /* orange on hover */
}

/* Hamburger to cross animation */
.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ------------------ MENU BASE STYLING ------------------ */
.menu {
    list-style: none;  /* remove bullets */
    margin: 0;
    padding: 0;
}

.menu li {
    list-style: none;  /* remove bullets from li */
    margin: 0;
}

/* ------------------ MOBILE MENU ------------------ */
@media (max-width: 768px) {

    /* Show hamburger */
    .menu-toggle {
        display: flex;
    }

    /* Make mobile menu dropdown below header */
    .main-navigation {
        position: absolute; /* absolute so it doesn’t push logo */
        top: 100%;          /* just below header */
        left: 0;
        width: 100%;
        z-index: 999;
    }

    .main-navigation .menu {
        display: none;       /* hidden by default */
        flex-direction: column;
        width: 100%;         /* full width */
        background-color: #000;
        margin: 0;
        border-radius: 0;
        overflow: hidden;
    }

    .main-navigation .menu.active {
        display: flex;       /* show when active */
    }

    .main-navigation .menu li {
        border-bottom: 1px solid #333;
    }

    .main-navigation .menu li a {
        color: #fff;
        padding: 12px 20px;
        display: block;
        text-decoration: none;
        width: 85%;
    }

    .main-navigation .menu li a:hover {
        background-color: #222;
    }
}

/* ------------------ DESKTOP MENU ------------------ */
@media (min-width: 769px) {
    .menu-toggle {
        display: none; /* hide hamburger */
    }

    .main-navigation {
        position: static; /* normal flow for desktop */
    }

    .main-navigation .menu {
        display: flex !important;
        flex-direction: row;
        gap: 25px;           /* spacing between items */
        margin: 0;           /* remove container margin */
        padding: 0;          /* remove container padding */
        justify-content: flex-start; /* align items left */
    }

    .main-navigation .menu li {
        margin: 0; /* remove extra margin */
    }

    .main-navigation .menu li a {
        color: #fff; /* desktop link color */
        padding: 8px 12px;
        text-decoration: none;
        width: 85%;
    }

    .main-navigation .menu li a:hover {
        color: #ff3c00; /* hover color */
    }
}
.faq-section { max-width: 900px; margin: 50px auto; padding: 0 20px; }
.faq-heading { font-size: 1.2rem; font-weight: 700; text-align: center; margin-bottom: 30px; color: #222; }
.faq-container { display: flex; flex-direction: column; gap: 15px; }
.faq-item { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.08); background-color: #fff; }
.faq-toggle { display: none; }
.faq-question { padding: 18px 25px; font-size: 1.1rem; font-weight: 600; color: #333; background-color: #f4f4f4; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question:hover { background-color: #e0e0e0; }