﻿html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

body {
    background-color: #fcf8ef;
    background-image: url('images/BackgroundWeb.jpg.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    color: #362c27;
    font-family: Calps;
}

@font-face {
    font-family: 'Bilderberg';
    src: url('fonts/BilderbergRegular.ttf')
}

@font-face {
    font-family: 'Calps';
    src: url('fonts/Calps Regular.ttf')
}

.section {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0; /* important */
    margin: 0; /* important */
    position: relative;
}

/* Slide in from right */
.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

/* Slide out to left */
.slide-out-left {
    animation: slideOutLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0%);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* Slide in from left */
.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

/* Slide out to right*/
.slide-out-right {
    animation: slideOutRight 0.6s ease forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0%);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.logo {
    max-width: 250px;
    height: auto;
}

.section-2 .logo, .section-3 .logo {
    max-width: 200px;
    height: auto;
}

.hero-image {
    max-width: 90%;
    max-height: 50vh;
    height: auto;
}

.countdown {
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(220, 189, 113, 0.2);
    font-size: 4rem;
    letter-spacing: 2px;
    font-family: Bilderberg;
}

.countdown-wrapper {
    max-width: 400px;
    font-family: Bilderberg;
}

.count-number {
    font-size: 3.5rem;
    /*font-weight: 700;*/
    line-height: 1;
    /*letter-spacing: 4px;*/
}

.count-label {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    opacity: 0.8;
    padding: 0 4px;
}

.btn-estreno {
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 40px;
    background-color: #c20316;
    border-color: #dcbd71;
    font-family: Calps;
}

    .btn-estreno:hover {
        background-color: #D00318;
        border-color: #dcbd71;
    }

.btn-estreno-alt {
    padding-left: 38px;
    padding-right: 38px;
    border-radius: 40px;
    border-color: #362c27;
    border-width: 3px;
    color: #362c27;
    font-family: Calps;
}

    .btn-estreno-alt:hover {
        color: #dcbd71;
        background-color: transparent;
        border-width: 3px;
        border-color: #dcbd71;
    }

h3, h5 {
    font-family: Bilderberg;
}

.member-photo{
    height: 30vh;
}

.result-photo {
    height: 55vh;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
}

.carousel-item {
    width: 150px;
    width: auto;
    display: block;
    margin-right: 0px;
}

.carousel-nav {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #333;
    cursor: pointer;
    padding: 0 10px;
    user-select: none;
}

    .carousel-nav:hover {
        color: #000;
    }

.costume-thumb {
    /*width: 100%;*/
    width: auto;
    height: 160px;
    object-fit: contain;
    /*border-radius: 10px 10px 0 0;*/
}

.costume-card.selected {
    border: 3px solid #dcbd71;
    box-shadow: 0 0 12px rgba(220,189,113,0.4);
    transform: translateY(-3px);
}

.txt-estreno-gold {
    color: #dcbd71
}


@media (min-width: 992px) {
    .hero-image {
        max-width: 600px;
    }
}
