/* Custom font faces */

@font-face {
    font-family: 'Perfectly-Nineties';
    src: url('fonts/perfectlynineties.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Beach-Club';
    src: url('fonts/beachclub.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Stretch-Pro';
    src: url('fonts/stretchpro.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Variables */

:root {
    --lime: #A1FF99;
    --chartreuse: #E1FF00;
    --lilac: #CE95F1;
}

/* Reset Default Browser Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Elements */
html {
    font-size: 100%;
}

body {
    font-family: 'Perfectly-Nineties', sans-serif;
    line-height: 1.6;
    padding: 20px;
    background-color: black;
    background-image: url('images/background-30.jpg');
    background-size: 80%;
    background-position: left top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color:#F5F5F5;
}

a {
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    cursor: pointer;
}

a:hover {
    color: white;
}

h1 {
    text-transform: uppercase;
    font-family: 'Stretch-Pro', sans-serif;
    font-size: 36px;
    line-height: 46px;
    padding:30px 0px 10px 0px;
}

h2 {
    text-transform: uppercase;
    font-family: 'Stretch-Pro', sans-serif;
    font-size: 20px;
    line-height: 28px;
    padding:20px 0px 0px 0px;
}

h3 {
    font-family: 'Stretch-Pro', sans-serif;
    text-transform: uppercase !important;
    font-size: 16px;
    line-height: 20px;
    padding-top:4px;
    color:var(--lilac);
}

p {
    font-family: 'Perfectly-Nineties', sans-serif;
    font-size: 32px;
    line-height: 42px;
    margin: 10px 0px;
}

/* Layout */
.content {
    width: 70vw;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: auto;
    padding: 225px 0px 150px 0px;
}

.content a {
    color: var(--lime);
    text-decoration: wavy;
    text-transform: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Styles */

.lilac {
    background-color: var(--lilac);
}

.lilac li a:hover {
    color: #7E45A5;
}

.lime {
    background-color: var(--lime);
}

/* Performers */

.performer {
    width: 28%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
}

.performer a {
    color: white;
    width:100%;
}

.performer a:hover {
    color: var(--lilac);
}

.performer .venmo {
    color: var(--lime);
    font-family: 'Stretch-Pro', sans-serif;
    text-transform: uppercase !important;
    font-size: 16px;
    line-height: 20px;
    margin-top: 10px;
}

.performer .venmo:hover {
    color: #CCFFC7;
}

.venmo:hover {
    color: #CCFFC7;
}

.photo {
    margin:0px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: none;
    overflow: hidden;
    transition: filter 0.3s ease, opacity 0.3s ease; /* Add transition for smooth effect */
    position: relative; /* Ensure the pseudo-element is positioned correctly */
    background-size: cover; /* Ensure the background image covers the entire element */
    outline: none; /* Remove any outline */
    box-shadow: none; /* Ensure no box-shadow is applied */
}

.photo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%; /* Ensure the pseudo-element has the same border-radius */
    background: linear-gradient(to bottom, rgba(237, 144, 1, 1), rgba(255, 108, 196, 1)); /* Adjust the gradient as needed */
    opacity: 0;
    transition: opacity 0.3s ease; /* Smooth transition */
    pointer-events: none; /* Ensure the overlay does not interfere with pointer events */
}

.photo:hover::before {
    opacity: 0.5; /* Adjust the opacity as needed */
}

/* Footer */

.nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    text-align: center;
    padding: 10px 0;
    z-index: 1000;
    height: 89px;
    display: flex;
    justify-content: center;
    align-items: center;
    color:black;
}

.navigation {
    font-family: 'Stretch-Pro', sans-serif;
    position: fixed;
    bottom: 0;
    width: 80vw;
    height:89px;
    z-index: 1000;
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-grow: 1;
    padding: 0;
    margin: 0;
}

.navigation li {
    height: 100%;
    display: flex;
    align-items: center;
    width: 30%;
    justify-content: center;
    text-align: center;
    padding:40px;
    font-size: 16px;
    line-height: 20px;
}

.navigation li.selected {
    box-shadow: 0 -10px 0px white;
}

.navigation a:hover {
    color: #589552;
}

.bottom-gradient {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, black 0%, transparent 100%);
    z-index: 999;
    pointer-events: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, black 0%, transparent 100%);
    width: 100%;
    z-index: 1001;
    pointer-events: none;
}

/* Logo */

.main .logo {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 64px;
    max-width: 100vw;
    position: absolute;
    top: 35%;
    left: 48%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.about .logo,
.performers .logo {
    width: 570px;
    height: auto;
    display: block;
    margin-top: 0px;
    margin-left: 40px;
    pointer-events: auto;
}

/* Media queries for responsiveness */
@media (max-width: 709px) {
    body {
        background-color: black;
        background-image: url('images/background-30.jpg');
        background-size: 200%;
        background-clip: content-box;
        background-position: left top;
        background-repeat: no-repeat;
        overflow-x: hidden;
    }
    
    .content {
        width: 80vw;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: auto;
        padding: 150px 0px 250px 0px;
    }
    
    h1 {
        font-size: 26px;
        line-height: 36px;
        margin-bottom:0px;
        margin-top:6px;
    }
    
    h2 {
        font-size: 20px;
        line-height: 28px;
    }
    
    h3 {
        font-size: 16px;
        line-height: 20px;
    }
    
    p {
        font-size: 26px;
        line-height: 36px;
        margin:6px auto;
    }

    .about .logo {
        width: 100%;
        margin-top:25px;
        height: auto;
        display: block;
    }

    /* Footer */

    .nav {
        bottom: 0;
        left: 0;
        width: 100%;
        color: white;
        text-align: center;
        z-index: 1000;
        justify-content: center;
        align-items: center;
        color:black;
        height:auto;
        background-color: var(--lime);
    }

    .navigation {
        font-family: 'Stretch-Pro', sans-serif;
        bottom: 0;
        width: 100vw;
        height:auto;
        z-index: 1000;
        list-style: none;
        flex-direction: column;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 20px;
        margin: 0;
        background-color: var(--lime);
    }

    .navigation li {
        height: 40px;
        width:100%;
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: center;
        text-align: center;
        padding:10px;
        font-size: 16px;
        line-height: 20px;
    }

    .navigation li.selected {
        background-color: var(--chartreuse);
        width: 90%;
        box-shadow: none;
    }

    .bottom-gradient {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 325px;
        background: linear-gradient(to top, black 0%, transparent 100%);
        z-index: 999;
    }

    .performer {
        width:50vw;
        height:auto;
        display: flex;
        align-self: flex-start;
        margin-top: 0px;
        margin-right:auto;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 50px;
        text-align: center;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .main {
        overflow-x: hidden;
        width: 100%;
    }

    .main .logo {
        width: 150% !important;
        max-width: none !important;
        height: auto;
        display: block;
        margin-top: 30px;
        max-width: 100vw;
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%);
        overflow: hidden;
    }

    .about .logo,
    .performers .logo {
        width: 100%;
        height: auto;
        display: block;
        margin: 20px 0px 0px 0px;
    }

    .phone-center {
        text-align: center;
    }
}