/* ==========================================
   MetalSouls Website - Clean CSS (No Wix)
   ========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.intro-bg {
    /*background-image: url(img/intro-bg.jpg);
    background-size: cover;
    background-position: center;*/
    background-color: #000;
}

.click-to-enter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70vh;
    font-weight: bold;
    font-size: 1.25rem;
}

.click-to-enter a {
    text-decoration: none;
    color: inherit;
}

.cte-red {
    color: red;
}

.cte-black {
    color: black;
}

.cte-green {
    color: green;
}

.home-bg {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(img/home-bg.jpg);
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
}
.home-spacer {
    height: 475px;
}
.overlay-content {
    position: absolute;
    top: 460px;
    width: 100%;
}

.artists-bg {
    background-image: url(img/artists-bg.png);
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
}

.news-bg {
    background-image: url(img/news-bg.png);
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
}

.merch-bg {
    background-image: url(img/merch-bg.png);
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
}

.listen-bg {
    background-image: url(img/listen-bg.png);
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
}

.contact-bg {
    background-image: url(img/contact-bg.png);
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
}

.content-box {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Container */
.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar .nav-item .nav-link {
    font-family: "Rye", serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    color: #E21C21;
    font-size: 1.5rem;
}

.navbar .nav-item .nav-link.active {
    color: #00ff00;
}

.navbar-toggler {
    background: #000;
}

.navbar .fa-bars {
    color: #00ff00;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #116dff;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 24px;
    font-size: 14px;
    z-index: 10000;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 60px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, background-color 0.3s;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    background-color: rgba(226, 28, 33, 0.9);
}

/* Header */
.site-header {
    position: relative;
    padding: 20px 0;
    min-height: 299px;
    display: flex;
    align-items: flex-end;
}

/* Music Player */
.music-player {
    position: absolute;
    top: 150px;
    right: calc(50% - 490px + 451px);
    width: 70px;
    height: 70px;
}

.play-btn {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s;
    position: relative;
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-btn:focus {
    outline: 2px solid #116dff;
    outline-offset: 4px;
}

.play-btn svg {
    width: 100%;
    height: 100%;
}

.play-btn.playing .play-icon {
    display: none;
}

.play-btn.playing .pause-icon {
    display: block !important;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 299px - 200px);
    padding: 20px 0;
}

.hero-section {
    padding: 80px 0;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Contact Items */
.contact-item {
    animation: fadeIn 0.8s ease-in-out;
}

.contact-item h1,
.contact-item h2 {
    font-weight: 400;
    margin: 0;
}

.contact-item h1 {
    font-size: 25px;
    line-height: normal;
}

.contact-item h2 {
    font-size: 25px;
    line-height: normal;
}

/* Email Links */
.email-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.08em;
    transition: color 0.3s;
}

.email-link:hover {
    color: #cccccc;
}

.email-link.highlighted {
    background-color: #E21C21;
    color: #000;
    font-size: 1.15rem;
    padding: 8px;
    display: inline-block;
    text-decoration: underline;
}

.email-link.highlighted:hover {
    background-color: #ff2429;
}

/* Facebook Link */
.facebook-link {
    color: #E21C21;
    text-decoration: underline;
    font-family: 'Reklame Script', cursive;
    font-size: 25px;
    letter-spacing: 0.08em;
    transition: color 0.3s;
}

.facebook-link:hover {
    color: #ff2429;
}

/* Logo */
.logo-container {
    display: flex;
    justify-content: end;
    align-items: end;
}

.band-logo {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.band-logo:hover {
    transform: scale(1.05);
}

/* Footer */
.site-footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px 0 20px;
    margin-top: 80px;
}

.footer-content {
    text-align: center;
}

.disclaimer h3 {
    font-size: 9px;
    font-family: fantasy;
    color: #ffffff;
    font-weight: normal;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.copyright {
    font-size: 13px;
    color: #a8a8a8;
}

.copyright .author {
    color: #1ED417;
    font-weight: 500;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .site-header {
        min-height: 200px;
    }

    .home-spacer {
        height: 235px;
    }

    .overlay-content {
        top: 255px;
    }

    .music-player {
        top: 100px;
        width: 60px;
        height: 60px;
    }

    .content-grid {
        gap: 30px;
        padding: 0 20px;
    }

    .contact-item h1,
    .contact-item h2 {
        font-size: 20px;
    }

    .email-link,
    .facebook-link {
        font-size: 18px;
        word-break: break-word;
    }

    .band-logo {
        width: 100px;
        height: 99px;
    }

    body::before {
        background-size: cover;
        background-position: center center;
    }
}

@media (max-width: 480px) {
    .contact-item h1,
    .contact-item h2 {
        font-size: 16px;
    }

    .email-link,
    .facebook-link {
        font-size: 14px;
    }

    .disclaimer h3 {
        font-size: 8px;
    }

    .copyright {
        font-size: 11px;
    }
}

/* Focus Styles for Accessibility */
a:focus,
button:focus {
    outline: 2px solid #116dff;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .back-to-top,
    .music-player {
        display: none;
    }

    body::before {
        display: none;
    }

    .email-link,
    .facebook-link {
        color: #000000;
    }
}

.black-highlight {
    background-color: #000;
}

.header-red {
    color: #E21C21;
    text-transform: uppercase;
}

.header-green {
    color: #00FF00;
}

.header-yellow {
    color: #FFFF00;
}

.artists-color {
    color: #BB00FF;
}

.news-color {
    color: #eeffaa;
}

.merch-color {
    color: #eeeeee;
}

.contact-color {
    color: #0766ff;
}

.contact-color-alt {
    color: #3eb2aa;
}

.cursive {
  font-family: "Delicious Handrawn", cursive;
  font-weight: 400;
  font-style: normal;
}

.western {
  font-family: "Rye", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}

video {
    max-width: 100%;
}

.form-control {
    background: #0544a9;
    border: #000;
    color: #000;
}
