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

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3 {
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utility Classes */
.btn-primary {
    display: inline-block;
    background-color: #E6B93B;
    color: #333;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #d9ac2f;
}

.btn-secondary {
    display: inline-block;
    background-color: #f2f2f2;
    color: #333;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #e6e6e6;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 1000;
    max-width: 500px;
    width: 90%;
}

.cookie-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .cookie-buttons {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
    display: flex;
    flex-wrap: wrap;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    font-weight: bold;
}

nav ul li a:hover {
    color: #E6B93B;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px;
    }
    
    nav {
        width: 100%;
        margin-top: 15px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
}

/* Hero Section */
.hero {
    padding: 0;
    overflow: hidden;
}

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

.welcome-box {
    background-color: #E6B93B;
    padding: 30px;
    color: #fff;
}

.welcome-box h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.hero-image {
    height: 300px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        height: 400px;
    }
    
    .welcome-box {
        width: 40%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-image {
        width: 60%;
        height: auto;
    }
}

/* Zimmer Section */
.zimmer {
    padding: 60px 5%;
    text-align: center;
}

.zimmer h2 {
    margin-bottom: 40px;
}

.zimmer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.zimmer-card {
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.zimmer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.zimmer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.zimmer-card h3 {
    padding: 15px 15px 0;
}

.zimmer-card p {
    padding: 0 15px 15px;
}

@media (min-width: 768px) {
    .zimmer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Angebote Section */
.angebote {
    padding: 60px 5%;
    background-color: #f9f9f9;
}

.angebote-content {
    display: flex;
    flex-direction: column;
}

.angebote-text {
    margin-bottom: 30px;
}

.angebot-item {
    margin-bottom: 25px;
}

.angebot-item h3 {
    color: #555;
    font-size: 18px;
}

.angebote-image {
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
}

.angebote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .angebote-content {
        flex-direction: row;
        align-items: center;
    }
    
    .angebote-text {
        width: 60%;
        padding-right: 30px;
        margin-bottom: 0;
    }
    
    .angebote-image {
        width: 40%;
    }
}

/* Dienstleistungen Section */
.dienstleistungen {
    padding: 60px 5%;
    text-align: center;
}

.dienstleistungen h2 {
    margin-bottom: 15px;
}

.dienstleistungen > p {
    max-width: 800px;
    margin: 0 auto 40px;
}

.services-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.service-card:hover {
    background-color: #E6B93B;
    color: white;
}

@media (min-width: 768px) {
    .services-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Kontakt Section */
.kontakt {
    padding: 60px 5%;
    background-color: #f9f9f9;
    text-align: center;
}

.kontakt h2 {
    margin-bottom: 30px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

textarea {
    height: 120px;
    resize: vertical;
}

form button {
    margin-top: 10px;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 40px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-logo h2 {
    color: #fff;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-link {
    color: #ddd;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: #E6B93B;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}