@charset "utf-8";
body {
    margin: 0;
    height: 100vh;
    overflow-x: hidden;
    background-image: url("../images/persona-home.gif");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

#logo-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 60px;
    width: 50%;
    display: flex;
    align-items: center;
    padding-left: 20px;
    z-index: 100;
}

#logo-container img {
    height: 90%;
    width: auto;
}

#main-header-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 90;
}

.header-nav ul {
    list-style: none;
    padding: 0;
    margin-right: 20px;
    display: flex;
    gap: 30px;
}

.header-nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Arial Black', 'Helvetica', sans-serif;
}

.header-nav ul li a:hover {
    color: black;
}

#main-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#main-content img {
    width: 350px;
    max-width: 600px;
    height: auto;
    margin-left: -200px;
}


#scroll-section {
    margin-top: 100vh;
    margin-left: 55%;
    width: 45%;
    min-height: 80vh;
    background-color: transparent;
    padding: 50px 0;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-title {
    width: 80%;
    max-width: 600px;
    margin: 0 auto 10px;
    transform: translateX(-150px);
    text-align: right;
}

.section-title p {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Arial Black', 'Impact', sans-serif;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.1em;
    margin: 0;
}


.scroll-slider-wrapper {
    width: 80%;
    max-width: 600px;
    height: 50vh;
    margin: 0 auto;
    transform: translateX(-110px);
    position: relative;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.scroll-slider-item {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.0s ease-in-out;
}

.scroll-slider-item.active {
    opacity: 1;
}

.scroll-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: black;
}

#trailer-section {
    margin-top: 50px;
    margin-left: 55%;
    width: 45%;
    padding: 0 0 50px 0;
    box-sizing: border-box;
    background-color: transparent;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.video-title {
    width: 80%;
    max-width: 600px;
    margin: 0 auto 10px;
    transform: translateX(-110px);
    text-align: center;
}

.video-title p {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Arial Black', 'Impact', sans-serif;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.1em;
    margin: 0;
}

.video-container {
    width: 80%;
    max-width: 600px;
    margin: 20px auto 0;
    transform: translateX(-110px);
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

#video-intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    z-index: 200;
    opacity: 1;
    transition: opacity 1.5s ease-out;
}

#intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fade-out {
    opacity: 0 !important;
    pointer-events: none;
}

#contact-form-section {
    margin-top: 50px;
    margin-left: 55%;
    width: 45%;
    padding: 0 0 100px 0;
    box-sizing: border-box;
    background-color: transparent;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

#contact-form-section .section-title {
    width: 80%;
    max-width: 600px;
    margin: 0 auto 10px;
    transform: translateX(-110px);
    text-align: center;
}

#contact-form {
    width: 80%;
    max-width: 600px;
    margin: 20px auto 0;
    transform: translateX(-110px);
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.button-group {
    margin-top: 20px;
    text-align: right;
}

.button-group button {
    padding: 10px 20px;
    margin-left: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s;
}

#check-button {
    background-color: #007bff;
    color: white;
}

#check-button:hover {
    background-color: #0056b3;
}

#submit-button {
    background-color: #28a745;
    color: white;
}

#submit-button:hover:not([disabled]) {
    background-color: #1e7e34;
}

#submit-button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.error-message {
    color: red;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}

.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}