/* General Styles */
html {
    overflow-y: scroll;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
}

/* Background Images */
#home {
    background-image: url('../images/home-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    border-top: 5px solid black;
    border-bottom: 5px solid black;
    border-left: 15px solid black;
    border-right: 15px solid black;
}

#about,
#music,
#merch {
    background-size: cover;
    background-position: center;
}

#about {
    background-image: url('../images/about-bg.jpg');
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    text-align: center;
    padding: 0;
}

#music {
    background-image: url('../images/music-bg.jpg');
}

#merch {
    background-image: url('../images/merch-bg.jpg');
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#contact {
    background-image: url('../images/contact-bg.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 60px;
    min-height: 100vh;
    background-color: black;
}

/* Full Page Container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding-top: 60px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 1px 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    text-transform: uppercase;
    padding: 8px 12px;
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    font-size: 14px;
}

/* Shop Button */
#merch .shop-button {
    display: inline-block;
    background-color: #e67e22;
    color: black;
    padding: 15px 30px;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s ease;
    position: relative;
    top: -30px;
}

#merch .shop-button:hover {
    background-color: #d35400;
}

/* Logo */
.logo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 325px;
    height: auto;
    margin-bottom: 20px;
}

/* Video Page */
#videos {
    background-image: url('../images/videos-bg.png');
    background-size: cover;
    background-position: center;
    padding-top: 60px;
}

.video {
    width: 80%;
    max-width: 600px;
    margin: 5px auto; /* tighter vertical spacing */
}

.video iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}


#about h1 {
    margin: 0;
    padding-bottom: 20px;
    font-size: 48px;
    position: relative;
    color: white;
}

.scroll-container {
    width: 80%;
    max-width: 800px;
    height: 400px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 10px;
}

.scroll-text {
    width: 100%;
    text-align: center;
    position: absolute;
    animation: scrollUp 15s linear infinite;
    font-size: 18px;
    line-height: 1.5;
    color: white;
}

@keyframes scrollUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(-135%);
    }
}

/* Facebook Logo */
.social-links {
    margin-top: 10px;
    text-align: center;
}

.facebook-logo {
    display: inline-block;
    background-color: transparent;
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    margin-left: -50px;
}

.facebook-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.facebook-logo:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.facebook-logo:hover img {
    transform: scale(1.1);
}

/* Contact Page */
#contact h1 {
    margin: 0;
    padding: 20px;
}

.email-link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding-top: 0px;
    position: relative;
}

.email-link a {
    color: black; /* Initial color */
    font-size: 25px;
    text-decoration: none; /* Remove underline by default */
    font-weight: bold;
    text-align: center;
    transition: color 0.3s ease, text-decoration 0.3s ease; /* Smooth transition for color and underline */
}

.email-link a:hover {
    color: white; /* Change to white when hovering */
    text-decoration: underline; /* Underline text on hover */
}




@media (min-width: 768px) {
    .email-link {
        justify-content: flex-start;
    }
}

/* Music Page */
#music {
    background-image: url('../images/music-bg.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.album-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: -100px;
}

.album-gallery img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.album-gallery img:hover {
    transform: scale(1.1);
}

.history-section {
    background-color: black;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.history-section .history-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.history-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.scroll-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: white;
    animation: bounce 1.5s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@media (max-width: 768px) {
    .scroll-arrow {
        font-size: 25px;
    }
}

@media screen and (max-width: 600px) {
    nav {
        flex-direction: row;         /* Keep horizontal */
        flex-wrap: wrap;             /* Allow wrapping if needed */
        justify-content: center;     /* Center items */
        padding: 5px 0;              /* Reduce top/bottom padding */
    }

    nav a {
        margin: 3px 8px;             /* Less margin between links */
        font-size: 12px;             /* Smaller font */
        padding: 4px 8px;            /* Tighter padding */
        text-align: center;
    }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
    nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding: 4px 0; /* even slimmer */
    }

    nav a {
        font-size: 11px;       /* tighter font */
        padding: 3px 6px;      /* less padding */
        margin: 2px 5px;       /* tighter spacing */
    }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
    #music {
        padding-top: 80px; /* Creates space below fixed nav */
    }

    .album-gallery {
        margin-top: 0; /* Reset any negative margin if needed */
    }
}
.logo {
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
    animation-delay: 1s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
html {
    scroll-behavior: smooth;
}
