:root {
    --primary: #000000;
    --secondary: #666666;
    --accent: #999999;
    --text: #333333;
    --light-bg: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #ffffff;
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    font-family: 'Helvetica', sans-serif;
}

@keyframes moveHorizontal {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(100vh);
    }
}

@keyframes moveVertical {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100vw);
    }
}

.container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo-placeholder {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--text);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.coming-soon {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    color: var(--secondary);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    padding: 1.5rem;
    min-width: 250px;
}

.info-card i {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--text);
    text-decoration: none;
    font-size: 1.2rem;
}

.social-link:hover {
    background-color: var(--accent);
    transform: scale(1.1);
}

footer {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: var(--secondary);
}

/* Architectural floating elements */
.arch-element {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.element-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    animation: floatElement 18s ease-in-out infinite;
}

.element-2 {
    width: 80px;
    height: 160px;
    bottom: 20%;
    right: 8%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: floatElement 22s ease-in-out infinite reverse;
}

.element-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 20%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    animation: floatElement 15s ease-in-out infinite 3s;
}

.element-4 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 15%;
    clip-path: circle(50% at 50% 50%);
    animation: floatElement 12s ease-in-out infinite 1s;
}

.logo-w {
    width: 450px;
    margin-bottom: 4rem;
}

@keyframes floatElement {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(10px, -15px) rotate(5deg);
    }

    50% {
        transform: translate(20px, 0) rotate(0deg);
    }

    75% {
        transform: translate(10px, 15px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .coming-soon {
        font-size: 1.3rem;
    }

    .logo-placeholder {
        width: 100px;
        height: 100px;
        font-size: 1.5rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        width: 100%;
    }

    .arch-element {
        display: none;
    }

    .logo-w {
        width: 275px;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}