/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Farbpalette aus Styleguide */
    --primary-gold: #FED792;
    --primary-gold-dark: #F4D99C;
    --primary-blue: #82C6ED;
    --primary-blue-dark: #7DB9DE;
    --dark: #1a1a1a;
    --dark-soft: #2d2d2d;
    --light: #ffffff;
    --gray: #f8f8f8;
    --gray-medium: #e5e5e5;
    --text: #333333;
    --text-light: #666666;

    /* Schriftarten */
    --font-primary: 'Prometo', sans-serif;
    --font-secondary: 'Futura', 'Helvetica Neue', Arial, sans-serif;
}

/* Schriftarten einbinden - Fallback für Browser */
@font-face {
    font-family: 'Prometo';
    src: url('res/Prometo.woff2') format('woff2'),
         url('res/Prometo.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Prometo';
    src: url('res/Prometo-Light.woff2') format('woff2'),
         url('res/Prometo-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Prometo';
    src: url('res/Prometo-Medium.woff2') format('woff2'),
         url('res/Prometo-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Prometo';
    src: url('res/Prometo-Bold.woff2') format('woff2'),
         url('res/Prometo-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Prometo';
    src: url('res/Prometo-Black.woff2') format('woff2'),
         url('res/Prometo-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Prometo';
    src: url('res/Prometo-Italic.woff2') format('woff2'),
         url('res/Prometo-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Futura';
    src: url('res/FuturaStd-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura';
    src: url('res/FuturaStd-Book.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo img {
    height: 96px;
    width: auto;
    display: block;
}

.logo span {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.3s, border-bottom 0.3s;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.nav-links a:hover {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-gold);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at top right, var(--gray) 0%, var(--light) 50%, var(--light) 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Decorative corners (inspired by logo design) */
.hero-corner {
    position: absolute;
    width: 100px;
    height: 100px;
    pointer-events: none;
    z-index: 0;
}

.hero-corner-tl {
    top: 0;
    left: 0;
    border-top: 4px solid var(--primary-gold);
    border-left: 4px solid var(--primary-gold);
    border-radius: 8px 0 0 0;
}

.hero-corner-tr {
    top: 0;
    right: 0;
    border-top: 4px solid var(--primary-blue);
    border-right: 4px solid var(--primary-blue);
    border-radius: 0 8px 0 0;
}

.hero-corner-bl {
    bottom: 0;
    left: 0;
    border-bottom: 4px solid var(--primary-blue);
    border-left: 4px solid var(--primary-blue);
    border-radius: 0 0 0 8px;
}

.hero-corner-br {
    bottom: 0;
    right: 0;
    border-bottom: 4px solid var(--primary-gold);
    border-right: 4px solid var(--primary-gold);
    border-radius: 0 0 8px 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-content p {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 480px;
}

/* CTA-Button Styles */
.cta-button {
  display: inline-block;
  padding: 1rem 2.75rem;
  background: linear-gradient(135deg, #FFD980 0%, #82C6ED 100%);
  background-size: 200% 200%;
  background-position: left center;
  color: #1a1a1a;
  text-decoration: none;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(130, 198, 237, 0.35);
  border: none;
  position: relative;
  overflow: hidden;
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 60%
  );
  transform: translateY(-50%);
  transition: left 0.4s ease;
}

.cta-button:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(130, 198, 237, 0.6);
}

.cta-button:hover::after {
  left: 50%;
}

.cta-button:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(130, 198, 237, 0.4);
}

/* Spiral Animation */
.spiral-animation {
    width: 400px;
    height: 400px;
    position: relative;
    animation: float 8s ease-in-out infinite;
}

.spiral-animation::before,
.spiral-animation::after {
    content: '';
    position: absolute;
    border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
    animation: morph 12s ease-in-out infinite;
}

.spiral-animation::before {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, rgba(254, 215, 146, 0.4) 50%, transparent 100%);
    top: 0;
    left: 0;
    opacity: 0.85;
    filter: blur(1px);
}

.spiral-animation::after {
    width: 280px;
    height: 280px;
    background: linear-gradient(225deg, var(--primary-blue) 0%, rgba(130, 198, 237, 0.4) 50%, transparent 100%);
    bottom: 0;
    right: 0;
    opacity: 0.85;
    animation-delay: -6s;
    filter: blur(1px);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(3deg); }
}

@keyframes morph {
    0%, 100% { border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%; }
    25% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 30% 30% 70%; }
    75% { border-radius: 30% 30% 70% 70% / 30% 30% 70% 70%; }
}

/* Sections */
section {
    padding: 7rem 0;
}

section h2 {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    color: var(--dark);
    text-transform: uppercase;
}

section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-blue));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--gray) 0%, var(--light) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-text p:first-child {
    font-size: 1.2rem;
    color: var(--text);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-gold), var(--primary-blue));
}

.stat h3 {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 3rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat p {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* Services Section */
.services {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-medium);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.service-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: grayscale(0.3);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.service-card:hover .icon {
    filter: grayscale(0);
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card p {
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Clarity Section */
.clarity {
    background: linear-gradient(180deg, var(--light) 0%, var(--gray) 100%);
    position: relative;
    overflow: hidden;
}

.clarity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-blue));
}

.clarity-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

.clarity-text p {
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.clarity-text p:first-child {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.clarity-text strong {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--dark);
}

.clarity-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.clarity-logo {
    max-width: 100%;
    height: auto;
    width: 350px;
    filter: drop-shadow(0 10px 30px rgba(130, 198, 237, 0.2));
    transition: transform 0.5s ease;
}

.clarity-logo:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, var(--light) 0%, var(--gray) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(130, 198, 237, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hours-box {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(130, 198, 237, 0.35);
    position: relative;
    overflow: hidden;
}

.hours-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hours-box h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    position: relative;
}

.hours-box p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
}

.contact-info h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.contact-info > p {
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-medium);
}

.contact-details p {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1rem;
}

.contact-details strong {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.1rem 1.25rem;
    border: 2px solid var(--gray-medium);
    border-radius: 10px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text);
    background: white;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(130, 198, 237, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form button {
    width: auto;
}

/* Social Links */
.map-container {
    margin: 1.5rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: none;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-container iframe:hover {
    filter: grayscale(80%) contrast(1.05);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(130, 198, 237, 0.3);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-gold) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(130, 198, 237, 0.5);
}

.social-links a svg {
    position: relative;
    z-index: 1;
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--dark-soft) 0%, var(--dark) 100%);
    color: white;
    padding: 2.5rem 0;
    border-top: 3px solid var(--primary-gold);
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

footer p {
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

footer .footer-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

footer .social-links {
    margin-top: 0;
}

footer .social-links a {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    width: 40px;
    height: 40px;
}

footer .social-links a:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-blue) 100%);
}

footer a {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-blue));
    transition: width 0.3s ease;
}

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

footer a:hover {
    color: var(--primary-gold);
}

/* Impressum Page */
.impressum-page {
    background: var(--gray);
    min-height: 100vh;
}

.impressum-section {
    padding-top: 140px;
    padding-bottom: 4rem;
    min-height: calc(100vh - 200px);
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-medium);
    position: relative;
}

.impressum-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-blue));
    border-radius: 16px 16px 0 0;
}

.impressum-content h1 {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-medium);
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.impressum-content h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.impressum-content h2::after {
    display: none;
}

.impressum-content h3 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-blue-dark);
}

.impressum-content p {
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.impressum-content strong {
    font-weight: 600;
    color: var(--text);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.delay-1 {
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.delay-2 {
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        gap: 2rem;
    }

    .spiral-animation {
        width: 320px;
        height: 320px;
    }

    .spiral-animation::before {
        width: 240px;
        height: 240px;
    }

    .spiral-animation::after {
        width: 200px;
        height: 200px;
    }

    .hero-corner {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .hero-corner {
        width: 60px;
        height: 60px;
    }

    .hero-corner-tl,
    .hero-corner-tr,
    .hero-corner-bl,
    .hero-corner-br {
        width: 60px;
        height: 60px;
        border-width: 3px;
    }

    .clarity-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .clarity-visual {
        order: -1;
    }

    .clarity-logo {
        width: 280px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-sidebar {
        order: -1;
    }

    .hours-box {
        padding: 1.5rem;
    }

    .map-container iframe {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero {
        padding-top: 100px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content p {
        text-align: center;
        margin-left: 0;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .spiral-animation {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .nav-links {
        gap: 0.75rem;
        flex-wrap: wrap;
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    section h2 {
        font-size: 2rem;
    }

    .impressum-content {
        padding: 2rem;
    }

    footer .footer-content {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .stat h3 {
        font-size: 2.2rem;
    }

    .logo span {
        font-size: 0.9rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }
}
