/* Custom Properties for easy color changes */
:root {
    --bg-color: #000;
    /* Bold block color */
    --text-color: #ffffff;
    --button-bg: #000000;
    --button-text: #ffffff;
    --accent-color: #ffffff;
}

@font-face {
    font-family: 'BrokenNewsRegular';
    src: url('../fonts/BrokenNewsRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-size: 20px;
    letter-spacing: .1em;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    text-align: center;
    background-image: url("../img/bg.jpg");
    ;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: "BrokenNewsRegular", system-ui;
    font-weight: 400;
    font-style: normal;
    ;
}

/* Top Navigation / Signup */
.top-bar {
    position: -webkit-sticky;
    /* Support for Safari */
    position: sticky;
    top: 0;
    /* Distance from the top of the screen */
    z-index: 1000;
    /* Ensures it stays above other content */


    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    padding: 10px 0;
    text-align: center;
    ;
}

.signup-link {
    display: inline-flex;
    /* Allows the icon and text to sit together */
    align-items: center;
    /* Vertical alignment */
    gap: 8px;
    /* Space between icon and text */
    text-decoration: none;
    /* font-weight: bold; */
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    font-size: 1.2rem;
    transition: opacity 0.2s, transform 0.1s;
}

.signup-link:hover {
    opacity: 0.7;

}

.icon-letter {
    width: 18px;
    /* Adjust icon size */
    height: 18px;
    display: block;
}

/* Optional: Smooth hover effect */
.signup-link:hover {
    opacity: 0.7;
    color: #f03c26;
    transform: scale(1.1);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 20px 0px;
}

/* Logos */
.logo-wrapper {
    margin-bottom: 1vw;
    display: flex;
    justify-content: center;
}

/* SEO visually hidden text (keeps it indexable but invisible) */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.main-logo {
    max-width: 26vw;
    width: 100%;
    height: auto;
    display: block;
}

/* Release Section */
.release-section {
    margin-bottom: 60px;
}

.release-date {
    font-size: 3rem;
    font-weight: 900;
    color: #09a45e;
    /* text-transform: uppercase; */
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 1px #000;
}

.cta-button,
.bit-follow-section-cta {
    font-size: 1.5rem !important;
    display: inline-block !important;
    letter-spacing: 0.1em !important;
    font-family: "BrokenNewsRegular", system-ui;

    padding: 7px 30px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    border-radius: 50px !important;
    transition: transform 0.2s ease, color 0.6s ease, background-color 0.6s ease !important;
    background-color: #f03c26 !important;
    color: #000 !important;
    border: none !important;
}

.bit-follow-section-cta:hover,
.cta-button:hover {
    transform: scale(1.05) !important;
    background-color: #09a45e !important;
    color: #fff !important;
}

.bit-follow-section-cta {
    padding: 20px 30px !important;
}

/* Video Embed */
.video-container {
    margin: 30px 0;
    background: #000;
}

.video-aspect-ratio {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-aspect-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gigs-container {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

}

.bit-follow-section-heading-text {
    margin-top: 20px !important;
    font-family: "BrokenNewsRegular", system-ui;
    text-transform: uppercase !important;
    font-size: 150% !important;
    line-height: 1.2em !important;
}

.socials {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: center;

    /* Stick to bottom settings */
    /* position: fixed; */
    bottom: 0;
    left: 0;
    z-index: 1000;
    /* Keeps it above other content */

    /* Your requested styles */
    /* background radial gradient from rgba(0,0,0,0.5) to rgba(0,0,0,0.8) */
    background: radial-gradient(circle, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    padding: 10px 0;

    /* Blur effect (optional but looks great with semi-transparent bars) */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.socials a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    /* Changed to white so it's readable on the dark background */
    gap: 8px;
    font: 1rem;
    transition: opacity 0.2s, transform 0.1s;
}

.socials a:hover {
    opacity: 0.7;
}

.socials span {
    display: none;
}

/* IMPORTANT: Add padding to the bottom of your body 
so the footer doesn't cover up your last bit of content */
body {
    padding-bottom: 60px;
}

.socials a:hover {
    color: #f03c26;
    transform: scale(1.1);
}

.socials svg,
.socials img {
    width: 40px;
    /* Icon size */
    height: 45px;
    display: block;
}

.socials span.tg {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    /* Changed to white so it's readable on the dark background */
    gap: 8px;
    font: 1rem;
    transition: opacity 0.2s, transform 0.1s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.socials img {
    width: auto;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 10px 0 0;
    }

    .socials {
        flex-wrap: wrap;
        /* Stick to bottom settings */
        position: relative;
        margin-top: 100px;
        bottom: 0;
        padding: 0 10px;
        padding: 30px 10px;
        justify-content: space-evenly;
        gap: 20px;
    }

    body {
        padding-bottom: 0px;
    }

    .logo-wrapper {
        margin-bottom: 5vw;
    }

    .main-logo {
        max-width: 90vw;
    }

    .release-date {
        font-size: 2rem;
    }

    .socials svg {
        width: 56px;
        height: 60px;
        display: block;
    }

}