/* ========== GLOBALE GRUNDLAGEN ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #1a2c3e;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HEADER & NAVIGATION ========== */
header {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(2px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0f2b3d, #1e6a8a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #2c3e4e;
    transition: 0.2s;
    font-size: 1rem;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #1f7b9e;
    border-bottom: 3px solid #1f7b9e;
}

.nav-links a.active {
    color: #1f7b9e;
    border-bottom: 3px solid #1f7b9e;
}

/* ========== HERO BEREICH ========== */
.hero {
    background: linear-gradient(135deg, #eef5f9 0%, #ffffff 70%);
    padding: 3rem 0 2.5rem;
    border-bottom: 1px solid #e2edf2;
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a4e66, #2c7da0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Slogan Box */
.slogan-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(44,125,160,0.05);
    border-radius: 28px;
    border-left: 5px solid #2c7da0;
}

.slogan-text {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 400;
    color: #1e5a6f;
    line-height: 1.4;
}

.slogan-author {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #4a6f7e;
}

/* ========== BUTTONS ========== */
.btn-primary {
    background: #2c7da0;
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(44,125,160,0.3);
}

.btn-primary:hover {
    background: #1e5f7a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44,125,160,0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #2c7da0;
    color: #2c7da0;
    padding: 0.85rem 1.8rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #2c7da0;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0 0.5rem;
}

/* ========== SECTIONS ========== */
section {
    padding: 4rem 0;
    border-bottom: 1px solid #e9edf2;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 4px;
    background: #2c7da0;
    border-radius: 4px;
}

/* ========== SERVICES ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.service-card {
    background: white;
    padding: 1.8rem;
    border-radius: 28px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.25s ease;
    border: 1px solid #eef2f5;
}

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

.service-icon {
    font-size: 2.6rem;
    color: #2c7da0;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.webdesign-highlight {
    background: linear-gradient(105deg, #fff 0%, #f0f8fc 100%);
    border-left: 6px solid #2c7da0;
    margin-bottom: 2rem;
    padding: 1.8rem;
    border-radius: 28px;
}

.price-badge {
    background: #eaf4f8;
    padding: 0.25rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

/* ========== KONTAKT & MAPS ========== */
.contact-maps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info {
    flex: 1;
    background: white;
    padding: 1.8rem;
    border-radius: 28px;
    border: 1px solid #e2edf2;
}

.maps-container {
    flex: 1;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.maps-container iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(37,211,102,0.4);
    transition: 0.2s;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20b859;
}

/* ========== FOOTER ========== */
footer {
    background: #0f2b37;
    color: #cddfe6;
    padding: 2.5rem 0 1.5rem;
    margin-top: 1rem;
}

.footer-menus {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.footer-menus a {
    color: #b6d4e3;
    text-decoration: none;
    font-weight: 500;
}

.footer-menus a:hover {
    color: white;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.75rem;
    opacity: 0.7;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    .contact-maps-grid {
        flex-direction: column;
    }
    
    .maps-container iframe {
        min-height: 250px;
    }
}