/* -------------------- */
/* RESET + BASE STYLES  */
/* -------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Source Sans 3', sans-serif; */
}

body {
    background-color: #fffcef;
}

/* -------------------- */
/* NAVIGATION           */
/* -------------------- */

.headerbox {
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: 38%;
    padding: 10px 0;
    background: transparent;
    text-align: center;
    z-index: 2;
    font-size: 20%;
    border-radius: 50px;
}

.headerbox a {
    color: black;
    text-decoration: none;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    font-size: 18px;
}

.navbar a {
    text-decoration: none;
}

.logolink {
    margin-left: 80px;
    z-index: 2;
    size: 2em;
}

.sociallinks {
    display: flex;
    gap: 28px;
    margin-left: 30px;
    font-size: 18px;
}

.sociallinks i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border: 1.5px solid black;
    border-radius: 50%;
    font-size: 20px;
}

/* -------------------- */
/* FULLSCREEN SECTIONS  */
/* -------------------- */

.SOGPage,
.FIPage,
.videopage,
#Rosewood1,
.SOGviewport {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.SOGPage {
    background-image: url("RefinedBG.png");
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.SOGPage h1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 3rem;
    z-index: 1;
}

.FIPage {
    background-color: #0d2847;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.videopage {
    background-color: #150421;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.video {
    width: 95vw;
    height: 90vh;
}

#Rosewood1 {
    background-color: #0a001d;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#Rosewood1 h1 {
    display: flex;
    align-items: end;
}

.SOGviewport {
    background-color: rgb(255, 249, 238);
    display: flex;
}

/* -------------------- */
/* BUTTONS              */
/* -------------------- */

.stream-button,
.SOGInfo-button,
.about-button {
    background-color: rgb(120, 82, 46);
    color: #fff;
    border: none;
    padding: 10px 40px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.SOGInfo-button {
    margin-left: 30px;
}

.stream-button:hover,
.SOGInfo-button:hover,
.about-button:hover {
    background-color: #650e0e;
    color: white;
}

/* -------------------- */
/* CONTENT SECTIONS     */
/* -------------------- */

.black-bar {
    background-color: black;
    padding: 20px 0;
    text-align: center;
}

.content {
    padding: 20px;
    background-color: #f4f4f4;
}

.content h2 {
    margin-top: 20px;
    font-size: 2rem;
}

.content p {
    margin-top: 10px;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* -------------------- */
/* SOG MORE INFO PAGE   */
/* -------------------- */

.squares {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 65vh;
    font-size: small;
    position: relative;
}

.square {
    width: 16px;
    height: 16px;
    margin-left: 12px;
    background: linear-gradient(to bottom right, #ffaf00, #aa3636, #650e0e, black);
    border-radius: 0;
    opacity: 0.5;
    transition: transform 0.3s, background 0.3s, opacity 0.3s ease, border-radius 0.2s ease;
    position: relative;
}

.square:hover {
    transform: scale(1.8) rotate(45deg);
    background: linear-gradient(to bottom right, #ffaf00, #aa3636, #650e0e, black);
    opacity: 1;
    border-radius: 50%;
}

.preview-window {
    display: none;
    position: absolute;
    padding: 10px;
    background-color: white;
    border: 2px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 20;
}

/* Song meanings */
.SOGsongs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 18vh 0 0 10vw;
}

.SOGsongs p {
    margin-top: 10px;
    font-size: 1.2em;
}

.romannumerals {
    text-align: center;
}

.SOGtitles {
    margin-left: 10vw;
    text-align: left;
}

.SOGtrailer {
    display: flex;
    margin-left: 10vw;
}

/* -------------------- */
/* MUSIC PAGE           */
/* -------------------- */

.allmusic {
    display: flex;
    justify-content: center;
    background-color: rgb(255, 251, 242);
    width: 100vw;
    height: 100vh;
}

.allmusic div {
    margin: 15vw 7.5vw 0;
}

.allmusic h2 {
    margin-bottom: 20px;
}

.allmusic a {
    color: black;
    text-decoration: none;
}

.allmusic a:hover {
    color: #650e0e;
}

/* -------------------- */
/* FI MORE INFO PAGE    */
/* -------------------- */

.FIviewportLeft,
.FIviewportRight {
    position: absolute;
    width: 50vw;
    height: 100vh;
    z-index: 2;
}

.FIviewportLeft {
    left: 0;
    background-color: #000;
}

.FIviewportRight {
    right: 0;
    background-color: #fff;
}

.FIoverlay1,
.FIoverlay2 {
    position: absolute;
    width: 28vw;
    height: 74vh;
    margin-top: 16vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10%;
    transition: transform 0.3s ease;
    z-index: 3;
}

.FIoverlay1 {
    margin-left: 11vw;
    background: #fff;
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.3);
}

.FIoverlay2 {
    right: 0;
    margin-right: 11vw;
    background: #000;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.44);
}

.FIoverlay1:hover,
.FIoverlay2:hover {
    transform: scale(1.02);
}

.viewports h2 {
    position: absolute;
    top: 4vh;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
    font-size: 3em;
    letter-spacing: 4px;
    text-align: center;
    z-index: 4;
}

.FIviewportLeft h2 {
    color: white;
}

.FIviewportRight h2 {
    color: black;
}

.liveevents {
    position: relative;
    top: 150px;
    text-align: center;
    font-size: 1rem;
    color: black;
    z-index: 10;
}

/* -------------------- */
/* POPUP STYLING        */
/* -------------------- */

#popupOverlay {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

#popupOverlay .popupContent {
    max-width: 500px;
    margin: 10% auto;
    padding: 30px;
    background: hsl(32, 63%, 84%);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    font-family: Helvetica, Arial, sans-serif;
}

#popupOverlay input[type="email"],
#popupOverlay input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

#popupOverlay input.button {
    width: 100%;
    padding: 12px;
    background: #020202;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

#popupOverlay input.button:hover {
    background: #005bb5;
}

#closePopup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.indicates-required {
    margin: 5px 0 10px;
    font-size: 12px;
    text-align: center;
}

.popup-heading {
    text-align: center;
}

/* -------------------- */
/* MEDIA QUERIES        */
/* -------------------- */

@media (min-width: 1024px) {
    .headerbox {
        min-width: auto;
        max-width: 80%;
    }
}