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

@keyframes shake {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
  75% { transform: rotate(-3deg); }
  100% { transform: rotate(0deg); }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(232, 90, 79, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(232, 90, 79, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(232, 90, 79, 0); }
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); opacity: 1; }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

:root {
    --primary-color: #E85A4F;
    --text-color: #333;
    --background-color: #FFFFFF;
    --font-family: 'Inter Tight', sans-serif;
    --font-heading: 'Jost', sans-serif;
    --transition-standard: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-family);
    font-weight: 300; /* Inter Tight Light */
    color: var(--text-color);
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-standard);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 4rem;
    flex-wrap: wrap;
}

.logo-link {
    display: block;
}

.logo-link:hover {
    transform: scale(1.02) rotate(-1deg);
}

.logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.logo-main {
    display: flex;
    align-items: center;
}

.logo-vision {
    font-weight: 400; /* Regular */
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.logo-pop {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -1px;
    margin-left: 0.25rem;
}

.logo-dot {
    background-color: var(--primary-color);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    position: relative;
    top: -12px;
    left: 4px;
    animation: jump 2.5s ease-in-out infinite;
}

.logo-subtitle {
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2.5rem;
}

nav li {
    perspective: 1000px;
}

nav a {
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-standard);
}

nav a:hover {
    color: var(--primary-color);
    transform: translateY(-3px) rotate(2deg);
}

nav a:hover::after {
    width: 100%;
}

main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 2rem 4rem;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin: 0;
    animation: bounceIn 1s ease;
}

.hero-text h1 span {
    display: block; /* 3 lines on ALL screens */
}

.hero-light {
    font-weight: 300;
}

.hero-bold {
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

/* Impressum Design */
.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.impressum-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.impressum-header h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin: 0;
    line-height: 1;
    color: var(--primary-color);
}

.impressum-body {
    font-size: 1.05rem;
    line-height: 1.7;
}

.impressum-section {
    margin-bottom: 3.5rem;
    animation: bounceIn 1.2s ease;
}

.impressum-section h2 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.impressum-body p {
    margin-bottom: 0.8rem;
}

.impressum-body strong {
    font-weight: 500;
}

footer {
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-link {
    opacity: 0.5;
}

.footer-link:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: scale(1.1);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 135px;
    height: 135px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(232, 90, 79, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.6s;
}

.cta-button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(232, 90, 79, 0.4);
    animation: shake 0.5s ease-in-out infinite alternate;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button span {
    z-index: 1;
}

/* Responsive */
@media (max-width: 900px) {
    .impressum-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    header {
        padding: 2rem;
    }
    
    main {
        padding: 2rem;
    }
    
    footer {
        padding: 2rem;
        flex-direction: column-reverse;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    nav ul {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav a {
        font-size: 0.75rem;
    }

    .hero-text h1 {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }
    
    .hero-bold {
        white-space: normal;
    }

    .logo {
        align-items: center;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    header {
        justify-content: center;
        padding: 2rem 1rem;
    }
}


