/* ---------- Homepage tiles (single image sections) ---------- */
body.home {
    background: #34424d;
    color: #ffffff;
    padding-top: 10px;
}

.intro-split {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Left: text */
.intro-text {
    flex: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.2rem;
    align-items: center;
    text-align: center;
}

.intro-text h1 {
    margin-bottom: 5px;
}

/* Right: social stack */
.intro-social {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.intro-social-v2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

/* YouTube block full width */
.social-featured .social-top .social-link {
    width: 100%;
}

/* Row for FB + IG */
.social-featured .social-bottom-row {
    display: flex;
    gap: 12px;
}

/* FB and IG each take half width */
.social-featured .social-bottom-row .social-link {
    flex: 1;
    text-align: center;
}

/* Base social link */
.social-featured .social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s ease,
                border-color 0.2s ease;
}

.social-featured .social-link:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.45);
}

/* YouTube emphasis */
.social-featured .social-link.youtube {
    font-size: 1.05rem;
    padding: 8px 18px;
    justify-content: center;
    text-align: center;
    border-color: rgba(255,255,255,0.35);
}

/* Inline SVG icons */
.social-featured .social-icon {
    height: 28px;
    width: auto;
    display: block;
    flex-shrink: 0;
    opacity: 0.9;

    /* optical alignment */
    transform: translateY(1px);
}

/* Larger YouTube icon + optical nudge & Platform icon colours */
.social-featured .social-link.youtube .social-icon {
    height: 42px;
    transform: translate(-3px, 1px);
    color: #e60000;

    /* YouTube red */
}

.social-featured .social-link.facebook .social-icon {
    color: #2d6cdf;

    /* Facebook blue */
}

.social-featured .social-link.instagram .social-icon {
    color: #c13584;

    /* Instagram pink */
}

/* Highlight section */
.highlights-section {
    display: flex;
    justify-content: center;
    padding: 20px 20px;
}

.highlights-container {
    max-width: 1200px;
    width: 100%;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 20px;
    text-align: center;

    /* centres heading */
}

.highlights-grid {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.highlight-item {
    flex: 1;
}

.highlight-item img {
    width: 100%;
    border-radius: 6px;
}

.home .playlist-tile {
    width: 100%;
    max-width: 1200px;
    height: 320px;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-clip: padding-box;
    transition: filter 0.35s ease;
    box-sizing: border-box;
}

.home .playlist-tile:hover {
    filter: none;
}

.home .playlist-tile {
    box-sizing: border-box;
}

.playlist-pretitle {
    font-size: 0.9rem;

    /* smaller than main title */
    margin-bottom: 4px;

    /* pulls it close to "Between Worlds" */
    opacity: 0.85;

    /* optional – softens it slightly */
}

.home .playlist-tile-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 8px rgba(0,0,0,1);
}

.playlist-subtitle {
    margin-top: 6px;
    font-size: 0.9rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.75);
}

.playlist-text {
    background: rgba(0, 0, 0, 0.55);
    padding: 10px 16px;
    border-radius: 6px;
    display: inline-block;
    text-align: center;
    width: 600px;
    max-width: 90%;
    margin: 0 auto;
}

/* Tile images */
.home .betweenworlds-tile {
    background-image: url('../images/sections/BeyondWorlds.jpg');
    border: 2px solid #4a6652;
}

.home .frank-tile {
    background-image: url('../images/sections/Frankenstein.jpg');
    border: 2px solid #5a4c4c;
}

.home .curiosities-tile {
    background-image: url('../images/sections/Curiosities.jpg');
    border: 2px solid #6c5e42;
}

/* Mobile */
@media (max-width: 700px) {
    .intro-split {
        flex-direction: column;
        align-items: stretch;
    }

    .intro-social {
        margin-top: 20px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
    }

    .social-link span {
        display: none;
    }

    .social-icon {
        height: 32px;
    }
}

/* Mobile: homepage playlist tiles */
@media (max-width: 600px) {
    .home .playlist-tile {
        min-height: 220px;
        height: 220px;
    }
}

.playlist-tile {
    transition: filter 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;

    /* Adjust this to match your tallest box */
    padding: 20px;
    flex: 1;
    max-width: 300px;
}

.playlist-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


