:root {
    --bg-color: #fcfcfc;
    --text-color: #1a1a1a;
    --accent-color: #333;
    --secondary-text: #666;
    --spacing-unit: 1.5rem;
    --transition-speed: 0.4s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    color: var(--accent-color);
    text-decoration:none;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    width: 100%;
    max-width: 1200px;
    padding: var(--spacing-unit);
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh; /* Fallback */
    height: 100%;
    flex: 1 0 auto;
}

@media (min-width: 768px) {
    .hero {
        grid-template-columns: 1fr 1fr;
        padding: 4rem;
    }
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.logo {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--secondary-text);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--secondary-text);
    margin-bottom: 3rem;
    max-width: 400px;
}
.adress {
    font-size: .9rem;
    color: var(--secondary-text);
    margin-top: 1rem;
/*    margin-bottom: 2rem;*/
    /*max-width: 400px;
    position: absolute;
bottom:0px; left:0px;*/
}

.cta-button {
    display: inline-block;
    text-decoration: none;
    color: var(--bg-color);
    background-color: var(--text-color);
    padding: 1rem 2rem;
    border-radius: 2px;
    font-size: 0.95rem;
    transition: all var(--transition-speed) ease;
    align-self: flex-start;
    border: 1px solid var(--text-color);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--text-color);
}

/* Abstract Visual */
.visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.circle {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, #f0f0f0, #e0e0e0);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
    box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
}
.logop {
    width: 300px;
    /*height: 300px;
    background: radial-gradient(circle at 30% 30%, #f0f0f0, #e0e0e0);
    border-radius: 50%;*/
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
    /*box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;*/
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}



/* latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../fonts/inter/inter-latin-300.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../fonts/inter/inter-latin-600.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/inter/inter-latin-400.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


.hero-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none; /* Klicks gehen durch */
    transition: transform 0.1s ease-out; /* Weiche Bewegung der Maus */
    /*animation: float 6s ease-in-out infinite;*/
}

.hero-bg-shape-1 {
    right: -5%;
    top: -10%;
    width: 45%;
    height: 50%;
    background-color: rgba(151, 45, 50, 0.09); /*#e8dcdd;  #e8f5e9;*/
    border-bottom-left-radius: 100%;
    opacity: 0.8;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0% {
        top: -10%;
        right: -5%;
    }

    30% {
        top: -11%;
    }

    68%, 72% {
        right: -6%;
    }

    100% {
        top: -10%;
        right: -5%;
    }
}
