:root {
    --primary-color: #1a2937;
    --accent-color: #000000;
    --text-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
}


.content {
    width: 50%;
    min-height: calc(100vh - 60px);
    margin: 0 0 0 auto;
    padding: 4rem;
    text-align: center;
    background: -webkit-linear-gradient(120deg, rgba(53, 122, 232, 0.85), rgba(129, 43, 234, 0.85));
    background: linear-gradient(120deg, rgba(53, 122, 232, 0.85), rgba(129, 43, 234, 0.85));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content.content-image {
    margin-left: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.slideshow {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    20%, 80% { opacity: 1; }
}
.content.content-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .container {
        flex-direction: column-reverse;
    }
    .content {
        width: 100%;
        margin: 0;
        padding: 4rem 2rem;
        z-index: 2;
        min-height: 100vh;
    }
    .content.content-image{
        position: absolute;
        top: 0;
        bottom: 0;
        z-index: 1;
    }

    h1 {
        font-size: 2.5rem;
    }
}

h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1;
}

h2 {
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 1rem;
}

.animationFadeInDown {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s ease forwards;
}

.delay-1s {
    animation-delay: 0.5s;
}
.delay-2s {
    animation-delay: 1s;
}
.delay-3s {
    animation-delay: 1.5s;
}
.delay-4s {
    animation-delay: 2s;
}


.description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    font-weight: 200;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.contact-item img {
    width: 24px;
    height: 24px;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
}

.coming-soon {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    font-weight: 200;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 0;
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon img {
    width: 100%;
    height: 100%;
}

footer {
    background-color: var(--accent-color);
    padding: 1rem 2rem;
    min-height: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 200;
}

.footer-badges {
    display: flex;
    gap: 2rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
} 