/*
Theme Name: Cosmic Drift Theory
Author: Alexander Jasper
Description: Custom Bootstrap-based theme for Cosmic Drift Theory website
Version: 1.0
*/
:root {
    --glow-color: #00c3ff;
    --border-color: #0088ff;
    --hover-glow: rgba(0, 153, 255, 0.75);
    --button-text: white;
}

body {
    font-family: itc-avant-garde-gothic-pro, sans-serif;
    font-style: normal;
    font-weight: 100;
}

/* CTA MAILING BUTTON */
.cta-button {
    display: inline-block;
    border: none;
    border-radius: 4px;
    background-color: var(--border-color);
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover,
.cta-button:focus {
    box-shadow: 0 0 10px 3px var(--hover-glow);
    background: var(--glow-color);
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

/* Streaming Song Page Links */
a.text-black:hover {
    color: #444 !important;
}

/* Header Style Links */
.main-menu a {
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
}

.main-menu a:hover {
    color: var(--glow-color) !important;
}

.site-title a {
    text-transform: uppercase;
    letter-spacing: 0.002em;
}

.main-menu a {
    text-transform: uppercase;
    letter-spacing: 0.005em;
    font-weight: 200;
}

#parallax-bg {
    transition: transform 0.1s ease-out;
    will-change: transform;
}