/*
Theme Name: Arventisip
Author: Vasyl Melko
Author URI: https://github.com/melkoff
Description: Custom landing page for Agri-Industrial Platform.
Version: 1.0
*/

:root {
    --font-body: 'Roboto', sans-serif;
    --color-white: #ffffff;
    --color-dark: #333333;
    --overlay-color: rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-white);
    background-color: #000;
    overflow-x: hidden;
}

.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: -1;
    overflow: hidden;
}

.bg-image {
    width: 100%;
    height: 100%;
    background: center/cover no-repeat;
    animation: slowZoom 25s linear infinite alternate;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.8) 100%);
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.3);
    }
}

.header {
    position: relative;
    height: 100%;
    width: 100%;
}

.landing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 3rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo {
    width: 20%;
    margin: 0 auto;
}

.logo img {
    width: 100%;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

footer {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    flex: 1 100%;
    justify-content: end;
}

.status-title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.status-text {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    opacity: 0.9;
}

.email-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(1rem, 2vw, 1.2rem);
    transition: opacity 0.3s ease;
}

.email-link:hover {
    opacity: 0.7;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 1s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .landing-container {
        padding: 2rem 1rem;
    }

    .logo {
        width: 40%;
    }

    footer {
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .logo {
        width: 90%;
    }
}