/* =========================
   GLOBAL
   ========================= */

body {
    background-color: #E8EEEE;
    font-family: Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
}

.basic-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.bc-body {
    flex-grow: 1;
}


/* =========================
   HEADER / NAVIGATION
   ========================= */

.bc-body-header {
    text-align: center;
}

.bc-body-header nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.bc-body-header nav a {
    color: #18343B;
    text-decoration: none;
    font-size: 16px;
}

.bc-body-header nav a:hover {
    text-decoration: underline;
}

.firstHeading {
    font-size: 36px;
    margin-bottom: 8px;
}

.secondHeading {
    font-size: 24px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 20px;
}


/* =========================
   HOME PAGE
   ========================= */

.home-hero-section {
    background-color: #18343B;
    color: white;
    text-align: center;
    padding: 90px 20px 70px;
}

.hero-title {
    font-size: 48px;
    margin: 0 0 16px;
}

.hero-description {
    font-size: 20px;
    margin: 0;
}

.home-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 35px 20px;
    background-color: white;
}

.home-upload-cta-btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 8px;
    background-color: #3F8F8A;
    color: white;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.home-discover-cta-btn {
    display: inline-block;
    padding: 12px 22px;
    border: 1px solid #18343B;
    border-radius: 8px;
    background-color: white;
    color: #18343B;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.home-upload-cta-btn:hover {
    background-color: #347873;
}

.home-discover-cta-btn:hover {
    background-color: #E2ECEB;
}

.what-is-ays-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;

    padding: 70px 40px;
    background-color: #F4F7F7;
}

.what-is-ays-section-text {
    max-width: 550px;
}

.what-is-ays-title {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 18px;
}

.what-is-ays-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.what-is-ays-image {
    width: 400px;
    max-width: 40%;
}

.what-is-ays-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
}

.meet-the-team {
    background-color: #18343B;
    color: white;
    padding: 70px 40px;
}

.meet-the-team-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.meet-the-team-title h2 {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 16px;
}

.meet-the-team-title-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.meet-the-team-members {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.team-member {
    width: 360px;
    max-width: 100%;
    box-sizing: border-box;

    background-color: white;
    color: #18343B;
    border-radius: 16px;
    padding: 25px;
    text-align: center;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.team-member-name {
    font-size: 26px;
    margin-top: 18px;
    margin-bottom: 12px;
}

.team-member-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.team-member-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.meet-the-team-cta {
    text-align: center;
    margin-top: 40px;
}

.meet-the-team-description {
    font-size: 18px;
    margin-bottom: 14px;
}

.meet-the-team-cta-btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 8px;
    background-color: white;
    color: #18343B;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.meet-the-team-cta-btn:hover {
    background-color: #E2ECEB;
}

/* =========================
   DISCOVER PAGE
   ========================= */

.discover-hero-section {
    background-color: #18343B;
    color: white;
    text-align: center;
    padding: 55px 20px 45px;
}

.discover-title {
    font-size: 38px;
    margin: 0 0 14px;
}

.discover-description {
    font-size: 18px;
    line-height: 1.5;
    max-width: 750px;
    margin: 0 auto;
}

.btn-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-holder {
    width: 400px;
    max-width: 400px;
    height: 300px;
    display: flex;
    flex-direction: column;

    border: 1px solid black;
    border-radius: 16px;
    box-sizing: border-box;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    background-color: white;
    padding: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-holder:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.track-name-block {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.track-name-block h3 {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}

.controls {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.audio-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.navigation-controls {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.track-play-btn,
.track-pause-btn,
.track-play-branch-btn {
    padding: 10px 18px;
    border: 1px solid black;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;

    background-color: white;
    color: #18343B;
}

.track-play-btn:hover,
.track-pause-btn:hover,
.track-play-branch-btn:hover {
    background-color: #E2ECEB;
}

.track-branch-btn {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid black;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;

    background-color: #3F8F8A;
    color: white;
}

.track-branch-btn:hover {
    background-color: #347873;
}


/* =========================
   UPLOAD PAGE
   ========================= */

.upload-hero-section {
    background-color: #18343B;
    color: white;
    text-align: center;
    padding: 55px 20px 45px;
}

.upload-title {
    font-size: 38px;
    margin: 0 0 14px;
}

.upload-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto;
}

.image-selection-section {
    padding: 60px 40px;
    text-align: center;
}

.image-selection-section h3 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 30px;
}

.upload-img-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    max-width: 1000px;
    margin: 0 auto;
}

.upload-img-block {
    border-radius: 14px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.upload-click-img img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.upload-random-img {
    margin-top: 30px;
    text-align: center;
}

.upload-random-img-btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 8px;
    background-color: #3F8F8A;
    color: white;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.upload-random-img-btn:hover {
    background-color: #347873;
}


/* =========================
   FOOTER
   ========================= */

.site-footer {
    background-color: #18343B;
    color: white;
    padding: 30px 40px;
}

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

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-links a {
    color: white;
    text-decoration: none;
}

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


/* =========================
   RESPONSIVE / MEDIA QUERIES
   ========================= */

@media (max-width: 900px) {
    .what-is-ays-section {
        flex-direction: column;
        text-align: center;
    }

    .what-is-ays-image {
        max-width: 100%;
    }

    .btn-container {
        flex-direction: column;
        align-items: center;
    }

    .upload-img-grid {
    grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .upload-img-grid {
        grid-template-columns: 1fr;
    }
}