/* Grundeinstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0px 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    height: 93px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin:25px 10px 20px 10px;;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #006666;
}

/* Hero Bereich */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('axzellent_C-level.webp') no-repeat top center/cover fixed;
    height: 80vh;
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
padding: 0px 10px 50px 10px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 0.97;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #fff;
    color: #333;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
}

/* Sektionen */
.section {
    padding: 80px 0;
}

.bg-light {
    background: #f4f4f4;
}

h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

/* Grid & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card h3 {
    margin-bottom: 15px;
    margin-top:17px;
}

.link {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    color: #666666;
    font-weight: 700;
}

/* Footer */
.footer {
    background: #222;
    color: #fff;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-bottom {
    margin-top: 40px;
    font-size: 0.8rem;
    border-top: 1px solid #444;
    padding-top: 20px;
}
.footer a {
    text-decoration: none;
    color: #DDDDDD;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FFFFFF;
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Einfachheitshalber versteckt für Mobile */
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
img {
    max-width: 90%;
    height: auto;
    display: block;
}
}
