/* Slide 7: Contact */
.slide-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000000;
    position: relative;
    min-height: 100vh;
    height: 100vh;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.slide-contact .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100vw;
    min-height: 100vh;
    object-fit: cover;
    z-index: 0;
}

.slide-contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    z-index: 2;
    position: relative;
    padding: 40px 20px;
    box-sizing: border-box;
}

.contact-splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 4px;
}

.contact-brand-text {
    position: relative;
    right: 50px;
    bottom: -8px;
    font-family: 'Courier', monospace;
    font-size: 0.65rem !important;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    opacity: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

.contact-brand-text.animate {
    animation: fadeInContactText 1s ease-out forwards;
}

.contact-splash-logo {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    opacity: 0;
}

.contact-splash-logo.animate {
    animation: fadeInContactLogo 1s ease-out 0.2s forwards, floatContactLogo 3s ease-in-out infinite;
    animation-delay: 0.2s, 1.2s;
}

@keyframes fadeInContactText {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInContactLogo {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatContactLogo {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.contact-items-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 100%;
    max-width: 800px;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(30px);
}

.contact-items-container.animate {
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.contact-item {
    width: 100%;
    text-align: center;
}

.contact-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding: 0;
    letter-spacing: 0.05em;
    font-weight: 300;
    line-height: 1.6;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.contact-items-container:hover .contact-text {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .contact-splash-logo {
        max-width: 200px;
        max-height: 200px;
    }

    .contact-brand-text {
        font-size: 0.6rem !important;
        margin-bottom: 8px;
        letter-spacing: 2px;
    }

    .contact-text {
        font-size: 1.2rem;
    }

    .contact-items-container {
        gap: 2px;
        max-width: 550px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .slide-contact-content {
        padding: 30px 20px;
    }

    .contact-splash-logo {
        max-width: 200px;
        max-height: 200px;
    }

    .contact-brand-text {
        font-size: 0.6rem !important;
        margin-bottom: 8px;
        letter-spacing: 2px;
    }

    .contact-items-container {
        flex-direction: column;
        gap: 2px;
        max-width: 100%;
        padding: 0 20px;
    }

    .contact-text {
        font-size: 1.1rem;
        padding: 8px 0;
    }

    .contact-email {
        order: 1;
    }

    .contact-phone {
        order: 2;
    }

    .contact-location {
        order: 3;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .slide-contact-content {
        padding: 20px 15px;
    }

    .contact-splash-logo {
        max-width: 120px;
        max-height: 120px;
    }

    .contact-brand-text {
        font-size: 0.55rem !important;
        margin-bottom: 6px;
        letter-spacing: 1.5px;
    }

    .contact-items-container {
        flex-direction: column;
        gap: 2px;
        padding: 0 15px;
    }

    .contact-text {
        font-size: 1rem;
        padding: 2px 0;
        letter-spacing: 0.03em;
    }

    .contact-email {
        order: 1;
    }

    .contact-phone {
        order: 2;
    }

    .contact-location {
        order: 3;
    }
}

