:root {
    --bg: #FFECF3;
    --bg2: #FFF5F9;
    --bg-light: #ffecf3a6;
    --bg-dark: #fdafcb;
    
    --tx: #000000;
    --tx2: #252525;

    --cf: #DB155E;
    --cf-dark: #a8174c;

    --font-main: "Space Grotesk";
    --font-focus: "VT323";
    --font-focus2: "Alegreya Sans SC";
    
    --header-height: 120px;

    --side-padding: 120px;
}

#smooth-content {
    padding-top: 0;
}

/*  */

.home {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    /* background-color: yellowgreen; */
}

.home-logo-container-parent {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 120px;
    justify-content: center;
    /* top: 25vh; */
    padding-top: clamp(var(--header-height), 25vh, 200px);
    left: 50%;
    transform: translateX(-50%);
    /* background-color: red; */
    z-index: 9;
}

.home-logo-container {
    position: relative;
    max-width: 35vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* .dj-text {
    position: absolute;
    top: 14%;
    left: 20%;
    font-family: var(--font-focus2);
    font-size: 28px;
    color: var(--cf);
} */

.logo-quote {
    text-align: center;
    letter-spacing: .4em;
    text-transform: uppercase;
    padding: 0 2.2em;
    margin-top: 1em;
}

.logo-quote span {
    text-wrap: nowrap;
}

.home-logo {
    width: 100%;
}

.home-img {
    width: 100%;
    max-width: 480px;
    max-height: 640px;
    height: auto;
    object-fit: contain;
}

.home-img1 {
    margin-top: var(--header-height);
    margin-right: 100px;
}

.home-img2,
.music-info {
    max-width: 26vw;
}

/* Player */

.player-container {
    position: relative;
    margin-top: var(--header-height);
    padding-top: 40px;
    margin-left: 100px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: fit-content;
    max-width: 480px;
    /* background-color: red; */
}

@keyframes rotate {
    to {
        rotate: 360deg;
    }
}

.disc {
    border-radius: 50%;
    background: linear-gradient(90deg, #000000 20%, #2d2d2d 36%, #000000 60%, #000000 100%);
    --disc-size: 170px;
    width: var(--disc-size);
    height: var(--disc-size);
    display: flex;
    justify-content: center;
    align-items: center;
}

.disc-white {
    --disc-size: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    width: var(--disc-size);
    height: var(--disc-size);

    display: flex;
    justify-content: center;
    align-items: center;
}

.disc-logo {
    position: relative;
    --disc-size: 44px;
    border-radius: 50%;
    background-color: var(--bg);
    width: var(--disc-size);
    height: var(--disc-size);
    display: flex;
    justify-content: center;
    align-items: center;
}

.disc-logo img {
    width: 96%;
    rotate: -30deg;
}

.playlist-by {
    font-size: inherit;
    /* font-weight: normal; */
    color: var(--cf);
    margin-bottom: 8px;
    opacity: .6;
    display: block;
    width: fit-content;
    transition: opacity 200ms ease;
}
.playlist-by:hover {
    opacity: 1;
}

.player-btn-container {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 14px;
    width: fit-content;
}

.player-btn-container-child {
    display: flex;
    flex-direction: row;
    /* gap: 0; */
    align-items: center;
    justify-content: space-between;
    /* background-color: red; */
    width: 100%;
    max-width: 140px;
}

.player-btn {
    all: unset;
    cursor: pointer;
    /* background-color: red; */
    /* aspect-ratio: 1/1; */
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 200ms ease;
}

.player-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    /* padding: 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 200ms ease;
}

.player-nav-btn:hover,
.player-btn:hover {
    opacity: 0.7;
}

.player-nav-btn:active {
    transform: scale(0.95);
}

.player-nav-btn img {
    width: 24px;
    height: 24px;
}

#wave {
    /* width: 220px; */
    max-width: 20vw;
    /* min-width: 210px; */
    width: 100%;
    overflow: visible;
    margin-top: 18px;
}

.player-container path {
  fill: transparent;
  stroke: var(--cf);
  stroke-width: 1px;
  vector-effect: non-scaling-stroke;
}

.music-info {
    font-family: var(--font-focus);
    color: var(--cf);
    /* background-color: red; */
    margin-top: 14px;
    padding-right: 1.8em;
}

.song-name {
    font-size: 28px;
}

.artist-name {
    font-size: 22px;
    opacity: .8;
}

/*  */

/* Only rotate when playing */
.player.is-playing .disc {
  animation: rotate 3s linear infinite;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .player.is-playing .disc { animation: none; }
}

/*  */

.about-container .heading {
    font-size: clamp(32px, 10vw, 94px);
    padding-left: 30px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.3));
    margin-bottom: 0;
}

.vector1 {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -999;
}

.home-about-para {
    position: absolute;
    /* width: 100%; */
    padding-left: 120px;
    text-align: justify;
    font-size: 22px;
    width: 160%;
}

/*  */

.gallery .heading {
    margin-left: auto;
    margin-right: var(--side-padding);
    filter: drop-shadow(4px 8px 2px rgba(0, 0, 0, 0.20));
}

.gallery {
    position: relative;
    margin-top: 40px;
    z-index: 3;
}

.venue-heading {
    font-weight: normal;
    font-size: 14px;
    margin-left: 100px;
    text-transform: uppercase;
    width: fit-content;
    opacity: .6;
}

.gallery-link {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: 100px;
    color: var(--cf);
    font-size: 20px;
    text-transform: capitalize;
    transition: font-weight 100ms ease;
}

.gallery-link span {
    display: inline-block;
    transform-origin: left bottom;
    line-height: .8;
    transition: scale 100ms ease;
}

.gallery-link:hover {
    font-weight: bold;
}

.gallery-link:hover span {
    scale: 1.4;
}

.gallery-grid-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(20px, 8vw, 100px);
    margin: 40px 0;
    padding: 0 clamp(20px, 8vw, 100px);
    width: max-content;
    user-select: none;
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.tile-container {
    position: relative;
    height: fit-content;
    max-width: 78vw;
}

.tile-container video,
.tile-container img {
    height: 100%;
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.tile-container video {
    cursor: pointer;
}

.mute-toggle-input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
  }
  
.toggleSwitch {
    width: 30px;
    height: 30px;
    position: absolute;
    right: -1px;
    bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
    transition-duration: .3s;
    overflow: hidden;
    z-index: 2;
}

.toggleSwitch * {
position: absolute;
}

.speaker,
.mute-speaker {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: .3s;
}

.speaker svg,
.mute-speaker svg { width: 18px; }

.speaker { opacity: 1; z-index: 2; }
.mute-speaker { opacity: 0; z-index: 3; }

.mute-toggle-input:checked + .toggleSwitch .speaker { opacity: 0; }
.mute-toggle-input:checked + .toggleSwitch .mute-speaker { opacity: 1; background-color: var(--bg-light);}

.mute-toggle-input:active + .toggleSwitch { transform: scale(0.9); }
/* .mute-toggle-input:hover + .toggleSwitch { background-color: var(--bg-dark); } */ /* og */
.tile-container.has-video:hover .toggleSwitch { background-color: var(--bg-dark); }

path {
    stroke-width: 1px;
    vector-effect: non-scaling-stroke;
}

.speaker .path1 {
    stroke:var(--tx2);
    stroke-width:1;
    stroke-linejoin:round;
    fill:var(--tx2);
}
.speaker .path2 {
    fill:none;
    stroke:var(--tx2);
    stroke-width:1;
    stroke-linecap:round
}

.mute-speaker svg {
    stroke:var(--tx2);
    stroke-width: 1;
}
.mute-speaker .path1 {
    fill: var(--tx2);
    stroke-linejoin: round;
}
.mute-speaker .path2 {
    fill: var(--tx2);
    stroke-linecap: round;
}
  
/*  */

.form {
    padding: 0 110px;
    margin-top: 100px;
    position: relative;
    z-index: 4;
}

/* .form-para {
    background-color: #ffffff40;
    max-width: 900px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--cf);
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 10px black;
} */

.form-para,
.form-para span,
.form-para input {
    font-size: 34px;
    color: var(--tx);
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.form-text {
    max-width: 900px;
    text-align: justify;
}

.form-para span {
    color: var(--cf);
    text-wrap: nowrap;
    display: block;
    margin-top: 8px;
}

.form-para input {
    all: unset;
    font-size: inherit;
    color: inherit;
    max-width: 100%;
    margin: 0 8px;
}
.form-para input::placeholder,
.form-para textarea::placeholder {
    color: var(--cf);
    opacity: .5;
    font-size: 28px;
}

.form-text textarea {
    border: 3px solid var(--cf);
    border-top: none;
    border-bottom: none;
    border-radius: 8px;
    padding: .1em .3em;
    font-size: 22px;
    height: 4em;
    max-width: 100%;
    color: var(--cf);
    background-color: var(--bg2);
}

.submit-btn {
    all: unset;
    font-size: 18px;
    color: var(--bg);
    background-color: var(--cf);
    text-transform: uppercase;
    padding: 0 1em;
    height: 34px;
    border-radius: 2em;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: .4em;
    box-shadow: 0px 0px 0px var(--cf);
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
    transition: filter 100ms ease;
}

.submit-btn span {
    font-size: 0em;
    color: var(--bg);
    font-weight: bold;
    transform: translateY(-.2em);
    transition: font-size 100ms ease;
}

.submit-btn:hover {
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.3));
}

.submit-btn:hover span {
    font-size: 1em;
}

/*  */

@media (max-width: 1570px) {
    .home-img1 {
        max-width: 26vw;
    }
}
@media (max-width: 1500px) {
    .heading {
        font-size: clamp(20px, 9vw, 142px);;
    }
    .vector1 {
        z-index: -9999;
    }
}
@media (max-width: 1400px) {
    .gallery {
        margin-top: 120px;
    }
}
@media (max-width: 1372px) {
    :root {
        --side-padding: 100px;
    }
}
@media (max-width: 1348px) {
    .about-container .heading {
        font-size: clamp(70px, 6vw, 94px);
    }
    .home-about-para {
        padding-left: 100px;
    }
}
@media (max-width: 1264px) {
    .home-about-para {
        padding-right: 1em;
    }
}
@media (max-width: 1260px) {
    .home-img1 {
        margin-right: 60px;
    }
    /* .home-logo-container-parent {
        gap: 26vw;
    } */
    .player-container {
        margin-left: 60px;
    }
}

@media (max-width: 1198px) {
    :root {
        --header-height: 100px;
        --side-padding: 60px;
    }
    .home-img {
        max-width: 26vw;
    }
    #form {
        padding: 0 80px;
    }
    .gallery-link {
        margin-right: 80px;
    }
    .venue-heading {
        margin-left: 80px;
    }
}

@media (max-width: 1170px) {
    .home-logo-container {
        width: 32vw;
    }
    .home-about-para {
        padding-right: 0;
    }
}

@media (max-width: 1134px) {
    /* .social-links-container a span {
        text-decoration: none;
    }
    .social-flex {
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: 20px;
        padding-bottom: 10px;
    }
    .socials-heading {
        display: none;
    }
    .social {
        margin-top: 70px;
    } */
    .copyright-text {
        margin-bottom: 18px;
    }
    .copyright-text p {
        text-align: left;
    }
    .footer-logo-container {
        margin-left: -16px;
    }
}
@media (max-width: 1092px) {
    .home-logo-container {
        width: 30vw;
    }
    .logo-quote {
        letter-spacing: .1em;
    }
    .disc {
        --disc-size: 160px;
    }
    
    #wave {
        width: 200px;
        min-width: 160px;
        margin: 20px 0 10px;
    }
    
    .song-name {
        font-size: 28px;
    }
    
    .artist-name {
        font-size: 18px;
    }
}
@media (max-width: 1010px) {
    .home-about-para {
        width: 50vw;
    }
}
@media (max-width: 968px) {
    .home-logo-container {
        width: 28vw;
    }
}
@media (max-width: 956px) {
    .about-container .heading {
        font-size: clamp(30px, 6.5vw, 94px);
    }
}
@media (max-width: 870px) {
    .logo-quote {
        letter-spacing: .05em;
        font-size: 14px;
    }
    nav {
        font-size: 16px;
    }
    /* .social .heading {
        font-size: 54px;
    } */
}

@media (max-width: 858px) {
    .form-para,
    .form-para span,
    .form-para input {
        font-size: 26px;
    }
}

@media (max-width: 730px) {
    .player-container {
        display: none;
    }
    .home-logo-container {
        display: none;
    }

    .about-container .heading1 {
        display: none;
    }

    .home {
        display: flex;
        width: 100%;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 80px;
        padding: 20px 40px 0;
        margin-top: 20px;
        padding-top: var(--header-height);
    }
    .form {
        margin-top: 80px;
    }
    .home-logo-container-parent {
        position: relative;
        top: 0;
        left: 0;
        transform: translateX(0);
        padding-top: 0;
    }
    .home-about-para {
        position: relative;
        margin-top: 0;
        padding-left: 0;
        width: 100%;
    }
    .home-img1 {
        margin-right: 0;
        margin-top: 0;
        min-width: 200px;
    }
    .gallery {
        margin-top: 0;
    }
}
@media (max-width: 710px) {
    :root {
        --side-padding: 40px;
    }
    .form-text {
        text-align: left;
    }
    #form {
        padding: 0 60px;
    }
    .gallery-link {
        margin-right: 60px;
    }
    .venue-heading {
        margin-left: 60px;
    }
}
@media (max-width: 540px) {
    .gallery-link,
    .venue-heading {
        margin: 0 auto;
    }
    .gallery-grid-container {
        margin-top: 10px;
    }
}
@media (max-width: 530px) {
    #form {
        padding: 0 42px;
    }
    .home-about-para {
        text-align: left;
    }
}

@media (max-width: 514px) {
    .home-about-para {
        font-size: 20px;
    }
}

@media (max-width: 486px) {
    .home {
        flex-direction: column;
    }
}
@media (max-width: 470px) {
    .ig-logo {
        gap: 20px;
    }
    .ig-logo img {
        height: 20px;
    }
}