/* MAIN STYLES */

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    width: 100%;
    background: #01111D;
    background: linear-gradient(90deg, rgba(1, 17, 29, 1) 50%, rgba(0, 7, 14, 1) 100%);
    color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
    font-family: league-gothic,sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
}

h1 {
    font-size: 3rem;
}

section h2 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: .5rem;
}

a {
    color: #B46793;
    text-decoration: none;
    font-weight: bold;
}

/* NAV BAR */

header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    height: 12vh;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: league-gothic,sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    color: #ffffff;
    letter-spacing: 0.025em;
}

.logo-title {
    margin: 0.5em;
}

.nav-links {
    height: 100%;
    list-style: none;
    z-index: 1;
}

.nav-links ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
    padding: .5em;
} 

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
} 

.nav-links li a:hover {
    color: #B46793;
} 

.cta {
    color: #ffffff;
    background-color: #B46793;
    border: 3px solid #B46793;
    padding: 0.15em 0.40em;
}

.cta:hover {
    color: #B46793;
    border: 3px solid #B46793;
    background-color: #01111D;
}

.toggle-button {
    position: absolute;
    display: none;
    top: 1.2em;
    right: 1rem;
    color: #ffffff;
}

.dropdown {
    position: relative;
}

.dropdown ul {
    position: absolute;
    background-color: #B46793;
    margin-top: 10px;
    width: 225px;
    height: 150px;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    list-style: none;
    border-radius: 2px;
    /* visibility: hidden; */
    transform: translateY(-10px);
    transition: all 0.5s ease;
}

.dropdown a {
    text-decoration: none;
    color: #ffffff;
    display: block;
}

.dropdown li {
    width: 100%;
    height: 100%;
    padding: 0.25em;
    text-transform: uppercase;
    font-size: 0.8em;
}

.dropdown li:hover {
    background-color: rgba(255,255,255,0.3);
}

.dropdown a:hover + ul {
    visibility: visible;
    display: flex;
    transform: translateY(0px);
}

ul li:hover ul.dropbtn {
    display: flex;
    transform: translateY(0px);
}


@media only screen and (max-width: 767px) {
    header {
        width: 100%;
        padding: 2.25rem 1rem 1rem;
    }

    .navbar {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .toggle-button {
        display: flex;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        max-width: 95vw;
        height: 100vh;
        padding-top: 1em;
        background-color: rgba(1,17,29,0.95);
    }

    .nav-links ul {
        width: 100%;
        flex-direction: column;
    }

    .nav-links ul li {
        text-align: center;
        padding: 0.5em 1em;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown ul {
        left: 0px;
        margin-top: 5px;
    }

    .dropdown li:hover {
        background-color: rgba(255,255,255,0.3);
    }

    ul li:hover ul.dropbtn {
        display: none;
        transform: translateY(0px);
    }

    h1.logo {
        font-size: 2rem;
    }
}


/* COVER */

.presentation {
    background-image: url(./images/BBcolor-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    position: relative;
}

.presentation .container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 80vh;
    align-items: center;
}

.presentation .introduction {
    flex: 1;
    padding-top: 5rem;
}

.presentation .cover {
    flex: 1;
    aspect-ratio: 1/1;
    width: 100%;
}

.presentation .gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 128px;
    background: linear-gradient(180deg, rgba(1, 17, 29, 0) 0%, rgba(1, 17, 29, 1) 80%);
    z-index: 10;
}

.intro-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.intro-text h2 {
    font-size: 3rem!important;
    font-weight: 500;
    font-family: league-gothic,sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    text-align: left;
}

.intro-text p {
    color: #ffffff;
    width: 100%;
    text-align: left;
    padding: 1em 0;
    font-size: 1em;
    line-height: 1.5em;
}

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

    .presentation {
        background-image: url(./images/BBcolor-bgmob.jpg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: bottom;
        min-height: 100vh;
    }

    .presentation .container {
        flex-direction: column;
        padding: 1rem;
    }

    .presentation .introduction {
        padding-top: 1rem;
    }

    .presentation .cover {
        aspect-ratio: 3/5;
    }

    .intro-text h2 {
        font-size: 1.75rem!important;
    }
}



/* COACHING & ABOUT */

.packages {
    max-width: 572px;
    margin: auto;
    text-align: center;
    padding: 5em 1rem;
}

.packages p, .about p, .contactme p {
    padding-bottom: 2em;
    line-height: 1.5em;
}


.button-contact {
    margin-top: 1em;
    padding: 0.5em 1em;
    background-color: #B46793;
    color: #ffffff;
    border: 3px solid #B46793;
    display: inline-block;
    font-family: league-gothic,sans-serif;
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
}

.button-contact:hover {
    background-color: #01111D;
    color: #B46793;
}

.badge-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: .25rem;
}



/* CAROUSEL STYLING */

.carousel {
    overflow: hidden;
    max-width: 70vw;
    position: relative;
    margin: auto;
}

.carousel .carousel__item,
.carousel .carousel__item-hidden {
    display: none;
}

.carousel .carousel__item-visible {
    display: block;
    animation: fadeVisibility 0.5s;
}

.carousel .carousel__actions {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel .carousel__actions button {
    border-radius: 50px;
    border: 0;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
}

.carousel .carousel__actions button:hover {
    opacity: 0.6;
    transition: 0.5s ease;
}

.testimonial-text {
    text-align: center;
    width: 80%;
    margin: auto;
    font-style: italic;
}

@keyframes fadeVisibility {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: opacity linear;
    }
}

/* FOOTER */

.contactme {
    font-size: 22px;
}

.contactme a {
    color: #01111D;
}

.contactme a:hover {
    color: #B46793;;
}

.contactme-links {
    color: #01111D;
    list-style: none;
    text-align: center;
    margin-top: 2em;
}

.contactme-links li {
    display: inline;
    padding: 0 1em;
}

.contactme-link {
    color: #01111D;
    font-size: 32px;
}

.contactme-link:hover {
    color: #B46793;;
}

footer {
    text-align: center;
    margin-top: 5em;
}

footer p {
    font-size: 14px;
    padding: 2em 0;
}

.contact-button a {
    color: #ffffff;
}


@media only screen and (min-width: 768px) and (max-width: 1199px) {

    h2 {
        font-size: 2.25em;
    }

    .landing {
        background-image: url(./images/BBcolor-bgmob.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        min-height: 100vh;
    }

    .introduction {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        margin: auto;
        min-height: 80vh;
        align-items: center;
        align-content: end;
    }

    .cover {
        flex: 0;
    }

    header {
        width: 100vh;
        padding-top: 2em;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .toggle-button {
        display: flex;
        top: 0.9em;
        right: 1.2em;
        color: #ffffff;
        font-size: 1.5em;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        height: 90vh;
        padding-top: 1em;
        background-color: rgba(1,17,29,0.9);
        border-radius: 5px;
        font-size: 1.5em;
    }

    .nav-links ul {
        width: 100%;
        flex-direction: column;
    }

    .nav-links ul li {
        text-align: center;
        padding: 0.5em 1em;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown ul {
        left: 0px;
        margin-top: 5px;
    }

    .dropdown li:hover {
        background-color: rgba(255,255,255,0.3);
    }
    
    ul li:hover ul.dropbtn {
        display: none;
        transform: translateY(0px);
    }

    h1 {
        font-size: 3em;
    }

    .logo {
        font-size: 1.75em;
    }

    p {
        font-size: 1.25em;
    }


}

/* @media only screen and (max-width: 767px) {

    h2 {
        font-size: 1.5em;
    }

    .landing {
        background-image: url(./images/BBcolor-bgmob.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: bottom;
        min-height: 100vh;
    }

    .introduction {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: auto;
        min-height: 80vh;
        align-items: center;
        align-content: end;
    }

    .cover {
        flex: 1;
    }

    header {
        width: 100vh;
        padding-top: 2em;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .toggle-button {
        display: flex;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        height: 85vh;
        padding-top: 1em;
        background-color: rgba(1,17,29,0.9);
        border-radius: 5px;
    }

    .nav-links ul {
        width: 100%;
        flex-direction: column;
    }

    .nav-links ul li {
        text-align: center;
        padding: 0.5em 1em;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown ul {
        left: 0px;
        margin-top: 5px;
    }

    .dropdown li:hover {
        background-color: rgba(255,255,255,0.3);
    }

    ul li:hover ul.dropbtn {
        display: none;
        transform: translateY(0px);
    }
 
    h1 {
        font-size: 2em;
    }

    .logo {
        font-size: 1.25em;
    }

    p {
        font-size: 1em;
    }



} */