﻿/*@font-face {
    font-family: 'futara light';
    src: url('../../fonts/futura/FUTURA45LIGHT.TTF');
}

@font-face {
    font-family: 'futara regular';
    src: url('../../fonts/futura/FUTURA55REGULAR.TTF');
}

@font-face {
    font-family: 'futara bold', sans-serif !important;
    src: url('../../fonts/futura/FUTURA75BOLD.TTF');
}*/

main {
    width: 100%;
}

body {
    animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0.9;
    }

    100% {
        opacity: 1;
    }
}

#hero {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
}

#head-info-container {
    padding-left: 7rem;
    padding-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 5rem;
    width: 100vw;
}

#logo-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

#tenticks-logo {
    width: 160px;
    height: 70px;
}

.background-gradient {
    background: linear-gradient(90deg, #0D1927 0%, #253931 50%, #1A1A1A 100%);
    /* Dlder browsers */
    background: -webkit-linear-gradient(90deg, #0D1927 0%, #253931 50%, #1A1A1A 100%);
}

.modal-header {
    position: relative;
}

#terms-title {
    color: #D1B14D;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header-btns {
    text-decoration: none !important;
    color: white !important;
    background-color: #008c46 !important;
    transition: background-color 0.3s ease;
    text-align: center !important;
    padding: 2rem !important;
    font-size: 0.8vw;
    font-weight: bold;
    box-shadow: 0.2rem 0.2rem 0rem 0rem rgba(0, 0, 0, 0.7);
}

    .header-btns:hover {
        cursor: pointer;
        background-color: #078930 !important;
    }

#hero-img {
    width: 100%;
    background-image: url('../../images/lionCubCompetition/lion-cub-header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

#hero-btn-container {
    display: flex;
    flex-direction: row;
    gap: 4rem;
}

.head-btn-containers {
    display: flex;
    flex-direction: column;
    flex: 1;
}

i, h1 span {
    color: white;
}

h1 {
    font-family: Calibri;
    font-weight: bold !important;
    color: #008c46 !important;
}

p {
    font-family: Calibri;
}

#hero-banner {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: #D1B14D;
    color: white;
    width: 100%;
    padding: 2rem;
    margin-bottom: 4rem;
}

    #hero-banner div {
        text-align: center;
    }

/* BACK TO 10TICKS BUTTON*/
.backtosite {
    position: fixed;
    left: 2rem;
    bottom: 4rem;
    z-index: 1;
    background: #1C70D8;
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    box-shadow: 0.2rem 0.2rem 0rem 0rem rgba(0,0,0,0.4);
}

footer {
    width: 100%;
    margin-top: 5rem;
    height: 10rem;
    background-image: url('../../images/lionCubCompetition/liontrustbanner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#backtosite-txt {
    margin-bottom: 0.2rem;
    color: white;
    font-family: 'Lilita One';
    font-size: 1.6rem;
    padding: 1rem 0.8rem 0.8rem 0.8rem;
}

/* SECTION */
#split-imgs {
    border-radius: 2rem;
    width: 85%;
}

#split-text {
    font-family: Calibri;
}



/* LEFT SECTION */

.left-section {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.left-img {
    display: flex;
    flex-direction: row;
    width: 60%;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem 0rem 2rem 0rem;
}

.right-text {
    display: flex;
    flex-direction: column;
    width: 40%;
    justify-content: flex-start;
    margin: 4rem 4rem 4rem 0rem;
    transform: translateX(-4rem);
    background: white;
    padding: 2rem;
    box-shadow: 0.2rem 0.2rem 0rem 0rem rgba(0,0,0,0.6);
    border: solid 1px #0000002e;
}



/* RIGHT SECTION */

.right-section {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.left-text {
    display: flex;
    flex-direction: column;
    width: 40%;
    margin: 4rem 4rem 4rem 0rem;
    transform: translateX(8rem);
    background: white;
    padding: 2rem;
    box-shadow: 0.2rem 0.2rem 0rem 0rem rgba(0,0,0,0.6);
    border: solid 1px #0000002e;
}

.right-img {
    display: flex;
    flex-direction: row;
    width: 60%;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 0rem 2rem 0rem;
}


/* PRIZES */
.prizes {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.prize-list {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 2rem;
}


.prize {
    display: flex;
    flex-direction: column;
    width: 30%;
    align-items: center;
}

#prize-title {
    padding: 2rem;
}

#zoo-logo {
    height: 150px !important;
}

/* CUB VIDEO */
.cub-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin: 4rem;
}

.video {
    width: 80rem;
    height: 40rem;
}

.cub-countdown {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center
}

.cub-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    background: #D1B14D;
    color: white;
    padding: 0.1rem 0.6rem;
    font-size: 1rem !important;
    font-family: Calibri;
    box-shadow: 0.2rem 0.2rem 0rem 0rem rgba(0, 0, 0, 0.3);
}

    .cub-card > h1 {
        color: white !important;
        font-size: 2rem;
    }

    .cub-card > h2 {
        color: white !important;
        font-size: 0.6rem;
    }

/* TERMS */

#terms {
    color: black;
    font-family: Calibri;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 1.5rem;
    float: right;
    background: #ffffff85;
}

/* PARTNERSHIP */
#partnership {
    font-family: Calibri;
    color: white;
    vertical-align: middle;
}



/* LOGOS */
#liontrust-logo {
    height: 15vh;
    padding: 0.5rem;
}

#support {
    color: white;
    font-family: 'Lilita One';
    margin-top: 0;
    margin-bottom: 0;
    
}



/* FORM */

#form-modal-body {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.form-left {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    width: 50%;
}

.form-right {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    width: 50%;
}

.form-label {
    font-family: Calibri;
    font-size: 1.1rem;
}

.form-control {
    border-radius: 0 !important;
    margin-bottom: 1rem;
    border: 1px solid #078930;
}

#cubFormError {
    font-family: Calibri;
    font-size: 1rem;
    color: red;
}


#cubFormSuccess {
    font-family: Calibri;
    font-size: 1rem;
    color: green;
}


.btn-primary {
    background: #078930 !important;
    border-radius: 0;
    font-size: 1.5rem;
    font-family: Calibri;
}



/* Styles for small desktops and laptops */
    @media screen and (max-width: 1199px) {
    #logo-container {
        justify-content: center;
        flex-wrap: wrap;
    }

    #hero-img {
        display: none;
    }

    #head-info-container {
        padding: 2rem;
        justify-content: center;
        margin: auto;
    }

    .header-btns {
        font-size: 1rem;
    }

    h1, i {
        text-align: center;
    }

    /* RESPONSIVE LEFT SECTION */

    .left-section {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .left-img {
        display: flex;
        flex-direction: row;
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 2rem 0rem 1rem 0rem;
    }

    .right-text {
        display: flex;
        flex-direction: column;
        width: 90%;
        justify-content: center;
        background: white;
        padding: 2rem;
        box-shadow: 0.2rem 0.2rem 0rem 0rem rgba(0, 0, 0, 0.6);
        transform: translateX(0);
        align-items: center;
        margin: 0;
    }

    /* RESPONSIVE RIGHT SECTION */

    .right-section {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        align-items: center
    }

    .left-text {
        display: flex;
        flex-direction: column;
        width: 90%;
        justify-content: center;
        background: white;
        padding: 2rem;
        box-shadow: 0.2rem 0.2rem 0rem 0rem rgba(0, 0, 0, 0.6);
        transform: translateX(0);
        align-items: center;
        border: solid 1px #0000002e;
        margin: 0;
    }

    .right-img {
        display: flex;
        flex-direction: row;
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 2rem 0rem 1rem 0rem;
    }


    /* RESPONSIVE PRIZES */

    .prize-list {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .prize {
        width: 75%;
        padding: 1.5rem;
    }


    /* RESPONSIVE CUB VIDEO */
    .video {
        width: 80vw;
        height: 40vh;
    }

    .cub-video {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        margin: 1rem;
    }

    footer {
        background-position: right;
    }


    /* RESPONSIVE FORM */

        #form-modal-body {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .form-left {
            padding: 0.5rem;
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .form-right {
            padding: 0.5rem;
            display: flex;
            flex-direction: column;
            width: 100%;
        }




}


/* Styles for mobile devices */
@media screen and (max-width: 767px) {

    #hero {
        padding-bottom: 0rem;
    }

    #hero-img {
        display: none;
    }

    #head-info-container {
        padding: 2rem;
    }

    h1 {
        text-align: center;
    }

    #hero-btn-container {
        flex-direction: column;
        gap: 1rem;
    }

    #hero-banner {
        background-color: white;
        color: black;
    }

    .prize {
        width: 80%;
    }
}

.voting-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 85%;
    padding: 2rem; 
    margin: auto;
    box-shadow: 0.2rem 0.2rem 0rem 0rem rgba(0,0,0,0.6);
    border: solid 1px #0000002e;
    border-radius: 15px;
}