:root {
    --primary-color: #8B0000;
    --secondary-color: #008000;
    --accent-color: #DDD;
    --text-color: #333;
    --background-color: #FFF;
    --header-font: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    --body-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--background-color);
    padding: 20px 0;
    border-bottom: 3px solid var(--primary-color);
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 300px;
}

nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('bilder/auto.jpeg');
    background-size: cover;
    background-position: center bottom 20%;
    margin-bottom: 40px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 5px;
}

.hero h1 {
    font-family: var(--header-font);
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #a00000;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: var(--accent-color);
    margin-bottom: 40px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: var(--header-font);
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: var(--accent-color);
    margin-bottom: 40px;
}

.services h2 {
    font-family: var(--header-font);
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.services-content {
    text-align: center;
}

.services-content h3.info-heading {
    font-family: var(--body-font);
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 10px;
    margin-top: 20px;
}

.services-content p {
    margin-bottom: 20px;
}

/* Special Section (wird in special.css definiert) */
.special {
    padding: 60px 0;
    background-color: var(--accent-color);
    margin-bottom: 40px;
}

.special h2 {
    font-family: var(--header-font);
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.special-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.special-text-box {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
}

.special-text-box p {
    margin-bottom: 20px;
}

.special-gallery {
    width: 100%;
}

.gallery-box {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
}

.gallery-box h3 {
    font-family: var(--header-font);
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-images img {
    width: 200px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Menu Section */
.menu {
    padding: 60px 0;
    background-color: var(--accent-color);
    margin-bottom: 40px;
}

.menu h2 {
    font-family: var(--header-font);
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.menu-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.menu-categories button {
    background: none;
    border: none;
    font-size: 18px;
    margin: 5px 15px;
    padding: 5px 10px;
    cursor: pointer;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s, border-bottom 0.3s;
}

.menu-categories button:hover,
.menu-categories button.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.category-items {
    display: none;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-items.active {
    display: block;
}

.category-items h3 {
    font-family: var(--header-font);
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.menu-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    text-align: center;
}

.menu-item-content {
    color: #000;
}

.menu-item h3 {
    font-family: var(--header-font);
    font-size: 18px;
    margin-bottom: 5px;
    color: #000;
}

.menu-item p {
    margin-bottom: 5px;
    font-size: 16px;
    color: #000;
    text-align: center;
}

.footnotes {
    margin-top: 40px;
    font-size: 14px;
    text-align: center;
}

.footnotes h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.footnotes p {
    margin: 5px 0;
    color: #000;
}

/* Drinks Section */
.drinks {
    padding: 60px 0;
    background-color: var(--accent-color);
    margin-bottom: 40px;
}

.drinks h2 {
    font-family: var(--header-font);
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.drink-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drink-category {
    margin-bottom: 20px;
}

.drink-category h3 {
    font-family: var(--header-font);
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.drink-category h3:hover {
    color: #a00000;
}

.toggle-icon {
    font-size: 18px;
    margin-left: 10px;
}

.drink-items-container {
    display: none;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.drink-items-container.active {
    display: block;
}

.drink-items-container .menu-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.drink-items-container .menu-item-content {
    color: #000;
}

.drink-items-container .menu-item h3 {
    font-family: var(--header-font);
    font-size: 18px;
    margin-bottom: 5px;
    color: #000;
}

.drink-items-container .menu-item p {
    margin-bottom: 5px;
    font-size: 16px;
    color: #000;
    text-align: center;
}

/* Impressum Section */
.impressum {
    padding: 60px 0;
    background-color: var(--accent-color);
    margin-bottom: 40px;
}

.impressum h2 {
    font-family: var(--header-font);
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.impressum-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.impressum-content h3 {
    font-family: var(--body-font);
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 15px;
    margin-top: 20px;
}

.impressum-content p {
    margin-bottom: 15px;
    font-size: 16px;
}

/* Contact Section */
.contact {
    padding: 60px 0;
}

.contact h2 {
    font-family: var(--header-font);
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.contact-box {
    text-align: center;
    margin-bottom: 20px;
}

.contact-box h3.info-heading {
    font-family: var(--body-font);
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.contact-box-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-box-content p {
    margin-bottom: 10px;
    font-size: 16px;
}

.opening-hours {
    text-align: center;
    margin-bottom: 20px;
}

.opening-hours h3.info-heading {
    font-family: var(--body-font);
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.opening-hours-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.opening-hours-item {
    margin-bottom: 10px;
    font-size: 16px;
    text-align: center;
}

.opening-hours-item strong {
    font-weight: 600;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--body-font);
}

.form-group textarea {
    height: 150px;
}

/* Reviews Section */
.reviews {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.reviews h2 {
    font-family: var(--header-font);
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.review-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.review-item {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    max-width: 300px;
    text-align: left;
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 600;
    color: var(--text-color);
}

.review-rating {
    color: #f4c430;
    font-size: 16px;
}

.review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-logo img {
    max-width: 200px;
}

.footer-links {
    display: flex;
    list-style: none;
}

.footer-links li {
    margin: 0 15px;
}

.footer-links li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.7;
}

.social-icon {
    width: 24px;
    height: 24px;
}

.ssl-certificate {
    width: 50px;
    height: auto;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 14px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Italian Flag Design Element */
.italian-flag {
    display: flex;
    height: 8px;
    margin: 20px 0;
}

.flag-green {
    flex: 1;
    background-color: #008000;
}

.flag-white {
    flex: 1;
    background-color: #ffffff;
}

.flag-red {
    flex: 1;
    background-color: #cd212a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content, .contact-content, .special-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .footer-logo {
        background-color: rgba(255, 255, 255, 0.8);
        padding: 10px;
        border-radius: 5px;
    }

    .gallery-images img {
        max-width: 100%;
    }

    .review-list {
        flex-direction: column;
        align-items: center;
    }

    .review-item {
        max-width: 100%;
    }
}