/* Reset and Basic Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    /*background-image: url('desk-office-with-objects.jpg'); /* Replace with your image path */
    /*background-size: contain; /* Ensures the image covers the entire screen */
    /*background-position: center top; /* Centers the image */
    /*background-repeat: no-repeat; /* Prevents the image from repeating */
    /*margin-top: 200px;	*/
	background-color: #f9f9f7;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
}
.logo img{
	height:40px;
}
.banner {
    width: 100%;            /* Full width */
    height: 300px;          /* Height of the banner */    
	background-image: url('desk-office-with-objects.jpg'); /* Replace with your image path */
    background-size: cover; /* Ensure the image covers the entire area of the div */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
}

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

.nav-links a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #555;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
	margin-top: 100px;	
	background-image: url('desk-office-with-objects.jpg');
	background-size: cover;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.1rem;
    color: #333;
}

/* Expertise Section */
.expertise, .why_us, .it_consulting, .contact, .impressum, .chatbot{
    padding: 3rem 2rem;
    text-align: center;
}

.expertise h2, .why_us h2, .it_consulting h2, .contact h2, .impressum h2, .chatbot h2{
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.expertise-item .chatbot{
    border: 1px solid #000;
    padding: 1rem;
    transition: background-color 0.3s;
	background-color: #f9f9f7;
}

.expertise-item:hover {
    background-color: #f4f4f4;
}

/* Why Us Section */
.selling-point-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
	text-align: left;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.team-member h3 {
    margin-top: 0.5rem;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials .testimonial-item {
    border: 1px solid #000;
    padding: 1rem;
    margin: 1rem auto;
    max-width: 600px;
    font-style: italic;
}

/* Contact Section */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
	background-color: #f9f9f7;
}

input, textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #000;
    font-size: 1rem;
}

button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0.7rem 2rem;
    cursor: pointer;
    transition: background-color 0.3s;
}
/* Login Zone */
.login-zone {
    display: flex;
    justify-content: center;
    align-items: center;
/*    height: calc(100vh - 60px); /* Full height minus navbar */
   	margin-top: 15px; 
	margin-bottom: 30px; 
}

.login-form {
    background-color: rgba(255, 255, 255, 0.9);
	padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
    text-align: center;
}

.login-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.login-form label {
    display: block;
    font-size: 1em;
    margin-bottom: 5px;
    color: #333;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-form button {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
}

.login-form button:hover {
    background-color: #555;
}
/* Chatbot */
.chatbot-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
	text-align: left;
    border: 1px solid #000;
    padding: 1rem;
    transition: background-color 0.3s;
	background-color: #f9f9f7;
}

/* Impressum */
.impressum-item{
    display: flex;
    max-width: 500px;
    /*margin: 0 auto;*/
	align-items: center;
	text-align: left;
    border: 1px solid #000;
    padding: 1rem;
    transition: background-color 0.3s;
    background-color: #ccc;
	padding-bottom:40px;
	margin: 0 auto;
	gap: 1rem;
	
}
.impressum-address{
	margin-bottom: 100px;
	display:flex;
	align-items: center;
	background-color: red;
}

/* Mobile Menu */
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #fff;
        width: 100%;
        padding: 1rem 0;
        border-top: 1px solid #ddd;
    }

    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}
/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

button:hover {
    background-color: #333;
}

/* Footer */
.container{
	background-color:#f9f9f7;
	margin:0;
}

footer {
	text-align: center;
	padding: 1.5rem 0;
	border-top: 1px solid #000;
	font-size: 0.9rem;
	background-color: #f9f9f7;
	flex-direction:column;
	justify-content: space-between;
	margin-top: -10px;
	margin-bottom:0;
}

@media(max-width: 767px){
	.container{
		width: 25%;
		padding: 0 15;
	}
