/* Custom Properties */

:root {
    --bg-background: #01074B;
    --bg-background-dark: #000649;
    --disney-dark: #0b0b0b;
    --disney-beige: #f5e7cd;
    --disney-brown: #66493c;
}

/* Font */
@font-face {
    font-family: "InspireTWDC-Black";
    src: url("https://cdn.sites.disney.com/fonts/InspireTWDC_Web/20210519/InspireTWDC-Black.eot?#iefix");
    src: url("https://cdn.sites.disney.com/fonts/InspireTWDC_Web/20210519/InspireTWDC-Black.eot?#iefix") format("eot"),
    url("https://cdn.sites.disney.com/fonts/InspireTWDC_Web/20210519/InspireTWDC-Black.woff2") format("woff2"),
    url("https://cdn.sites.disney.com/fonts/InspireTWDC_Web/20210519/InspireTWDC-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    }


/* Style Reset */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    background-color: var(--bg-background);
    display: grid;
    justify-content: center;
    color: #ffffff;
    font-family: InspireTWDC-Black, Arial, san-serif;
    text-align: center;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    color: inherit;
}

p {
    text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}


/* Buttons */

.btn {
    max-width: 80%;
    width: 100%;
    padding: 0.7rem;
    text-transform: uppercase;
    outline: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    cursor: pointer;
    font-weight: bold;
}

.btn-primary {
    background-color: #e8e5dd;
    border: 3px solid #f0dcb6;
    color: var(--bg-background);
    box-shadow: 0 0 5px 3px rgba(240, 220, 182, 0.6), 3px 3px var(--disney-brown);
    padding: 0.5rem;
}

.btn-secondary {
    background-color: transparent;
    border: 3px solid #f0dcb6;
    color: #ffffff;
}


/* Main */

.wrapper {
    max-width: 650px;
    width: 100%;
}

/* Nav */
.navBar {
    background-color: #ffffff;
    padding: 1.3rem 4rem;
    width: 100%;
    position: relative;
    z-index: 10;
}

.navBar ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.navLinks {
    text-transform: uppercase;
    color: var(--disney-dark);
    font-weight: bold;
    text-decoration: none;
    font-size: 14px; 
    line-height: 18px; 
    font-family: 'Futura', Arial, sans-serif;
}


/* Video */

.videoWrapper {
    position: relative;
    background-color: var(--bg-background);
}

.audioIconContainer {
    position: absolute;
    z-index: 10;
    top: 2%;
    right: 2%;
    padding: 0.5rem;
    display: grid;
    place-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #3d5b51;
    border-radius: 100vw;
    border: 1px solid transparent;
    outline: none;
    cursor: pointer;
    display: none;
}

.audioIconContainer > img {
    display: none;
}

.audioIconContainer:hover {
    border: 1px solid #ffffff;
}

.audioSelectionCard {
    position: absolute;
    z-index: 100;
    inset: 0 0 20% 0;
    margin-inline: auto;
    margin-block: auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    z-index: 10;
    width: 80%;
    background-color: #0b206f;
    border: 5px solid var(--disney-beige);
    padding: 4rem 2rem 3rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 4px 4px var(--disney-brown);
}

.audioSelectionCard .mickeyHeadphones {
    position: absolute;
    top: -22%;
}

.audioSelectionCard .audioGreeting {
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 1.1;
    -webkit-margin-after: 0.7rem;
            margin-block-end: 0.7rem;
}

video {
    width: 100%;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    transition: -webkit-filter 0.3s ease-in;
    transition: filter 0.3s ease-in;
    transition: filter 0.3s ease-in, -webkit-filter 0.3s ease-in;
}

.salutationContainer {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin-inline: auto;
    opacity: 0;
    translate: 0 -5%;
}

.salutationContainer .salutation {
    font-size: 4rem;
}

.salutationContainer .greeting {
    font-size: 1.5rem;
    line-height: 1.3;
    font-family: Arial, sans-serif;
    -webkit-margin-before: 0.7rem;
            margin-block-start: 0.7rem;
}


/* Social */

.revealContainer {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: inherit;
    translate: 0 -10%;
    opacity: 0;
    display: none;
}


.socialHeader, .socialHeader2 {
    text-transform: uppercase;
    font-size: 2rem;
    margin: 0.5rem 2rem;
    line-height: 1.2;
}

.socialPara, .socialPara2 {
    font-size: 1.3rem;
    line-height: 1.2;
    font-family: Arial, sans-serif;
}

.socialHeader2 {
    font-size: 1.8rem;
}

.socialPara2 {
    font-size: 1.1rem;
    margin-inline: 2rem; 
}

.blueBg, .darkBlueBg {
    background-color: var(--bg-background);
    width: 100%;
}

.darkBlueBg {
    background: var(--bg-background-dark);
}

.gradientBlue {
    background: linear-gradient(to bottom, #01084f, var(--bg-background-dark)) !important;
}

.socialContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 60%;
}

.makeAWishLogo {
    margin-block-start: 1rem;
    margin-inline: auto;
}

/* Footer */

.brands {
    background-color: #000000;
}

.brands ul {
    gap: 0;
}

.line {
    background-color: #3c3c3c;
    width: 1px;
    height: 100%;
    display: inline-block;
}

.socialsIconsContainer {
    background-color: #ffffff;
}

.socials {
    max-width: 230px;
    padding: 1.3rem 2rem;
}

.socials ul {
    justify-content: flex-start;
    gap: 0.3rem;
}

.termsContainer {
    padding: 0.5rem;
    text-align: left;
    line-height: 1;
}

.termsText {
    font-size: 0.7rem;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* Media Queries */

@media only screen and (max-width: 650px) {

    :root {
        font-size: 3.3vw;
    }

    #particles-js {
        display: none;
    }

    .navBar {
        padding: 5vw 8vw;
    }

    .audioSelectionCard .audioGreeting {
        font-size: 1.5rem;
    }

    .audioSelectionCard .mickeyHeadphones {
        top: -15.5vw;
        width: 40%;
        height: auto;
    }

    .btn {
        max-width: 100%;
    }

    .shareIcon {
        width: 100%;
        height: auto;
    }

    .hide {
        display: none;
    }

    .block {
        display: block;
    }

    .brands, .socials {
        padding: 1.3rem 1.5rem;
    }

    .brands img {
        width: 100%;
        height: auto;
    }

    .makeAWishLogo, .sparkle {
        width: 50%;
        height: auto;
    }

    .signOff, .familySignOff, .letter {
        width: 100%;
        height: auto;
    }

    .socialPara {
        padding-inline: 4rem;
    }

    .socialHeader2 {
        font-size: 1.5rem;
    }

}

@media only screen and (min-width: 650px) {
    .hideOnDesktop {
        display: none;
    }
}


/* Animations */

@-webkit-keyframes fadeOut {
    to {
        translate: 0 -5%;
        opacity: 0;
        pointer-events: none;
    }
}

@keyframes fadeOut {
    to {
        translate: 0 -5%;
        opacity: 0;
        pointer-events: none;
    }
}

@-webkit-keyframes fadeIn {
    to {
        translate: 0 0;
        opacity: 1;
    }
}

@keyframes fadeIn {
    to {
        translate: 0 0;
        opacity: 1;
    }
}


/* Snow */
#particles-js {
    position: absolute;
    width: 100%;
    height: 250%;
    z-index: -100;
}
