/* 
 * Deutschland Entdecken
 * Hauptstil-Datei
 */

/* Grundlegende Zurücksetzungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Allgemeine Stile */
html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px = 1rem */
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004499;
}

img, object {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul {
    list-style: none;
}

/* Typografie */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    font-size: 1.6rem;
}

.btn-primary {
    background-color: #0066cc;
    color: white;
}

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

.btn-secondary {
    background-color: #e0e0e0;
    color: #333;
}

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

.btn-tertiary {
    background-color: transparent;
    color: #0066cc;
    border: 1px solid #0066cc;
}

.btn-tertiary:hover {
    background-color: rgba(0, 102, 204, 0.1);
}

/* Header und Navigation */
.site-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    max-width: 180px;
}

.logo {
    width: 100%;
    height: auto;
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
}

.main-nav .nav-list li {
    margin-left: 2.5rem;
}

.main-nav .nav-list a {
    color: #333;
    font-weight: 500;
    position: relative;
}

.main-nav .nav-list a:hover,
.main-nav .nav-list a.active {
    color: #0066cc;
}

.main-nav .nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0066cc;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero-Banner */
.hero {
    padding: 8rem 0;
    background-color: #f1f7fc;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 3rem;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-svg {
    max-width: 100%;
    height: auto;
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    text-align: center;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background-color: #f1f7fc;
    border-radius: 0.5rem;
    flex: 1;
    margin: 0 1rem;
}

.stat-number {
    display: block;
    font-size: 3.6rem;
    font-weight: 700;
    color: #0066cc;
}

.stat-label {
    font-size: 1.4rem;
    color: #666;
}

/* Destinations Section */
.destinations {
    padding: 8rem 0;
    background-color: #f8f8f8;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
}

.destination-card {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.destination-card h3 {
    margin: 1.5rem 0 1rem;
    padding: 0 2rem;
}

.destination-card p {
    padding: 0 2rem;
    color: #666;
    margin-bottom: 2rem;
}

.destination-card .btn {
    margin: 0 2rem 2rem;
}

/* Activities Section */
.activities {
    padding: 8rem 0;
    background-color: white;
}

.activities-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 3rem;
    text-align: center;
}

.activity-item {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-5px);
}

.activity-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

/* Culinary Section */
.culinary {
    padding: 8rem 0;
    background-color: #f8f8f8;
}

.culinary-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
    text-align: center;
}

.culinary-item {
    padding: 2rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.culinary-item:hover {
    transform: translateY(-5px);
}

.culinary-img {
    width: 150px;
    height: 150px;
    margin-bottom: 1.5rem;
}

/* Blog Preview Section */
.blog-preview {
    padding: 8rem 0;
    background-color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

.blog-card {
    background-color: #f8f8f8;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.blog-content {
    padding: 2rem;
}

.blog-date {
    display: block;
    font-size: 1.4rem;
    color: #888;
    margin-bottom: 1rem;
}

.blog-category {
    display: inline-block;
    background-color: #e0e0e0;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.blog-card h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.read-more {
    display: inline-block;
    color: #0066cc;
    font-weight: 600;
    margin-top: 1rem;
    position: relative;
}

.read-more:after {
    content: '→';
    margin-left: 0.5rem;
    transition: margin-left 0.3s ease;
}

.read-more:hover:after {
    margin-left: 1rem;
}

.blog-cta {
    text-align: center;
    margin-top: 5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background-color: #f1f7fc;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    text-align: center;
    padding: 3rem;
}

.testimonial-content {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-content p {
    position: relative;
}

.testimonial-content p:before,
.testimonial-content p:after {
    content: '"';
    font-size: 3rem;
    color: #0066cc;
}

.testimonial-author h4 {
    margin-bottom: 0.5rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #0066cc;
}

/* Contact/Subscription Section */
.contact {
    padding: 8rem 0;
    background-color: white;
}

.contact-content {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.contact-text {
    flex: 1;
}

.contact-info {
    margin-top: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.info-item svg {
    margin-right: 1.5rem;
    color: #0066cc;
}

.contact-form {
    flex: 1;
    background-color: #f8f8f8;
    padding: 3rem;
    border-radius: 1rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1.6rem;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    margin-right: 1rem;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

.error-message {
    color: #d9534f;
    font-size: 1.4rem;
    margin-top: 0.5rem;
    display: none;
}

/* Footer */
.site-footer {
    background-color: #222;
    color: #f8f8f8;
    padding: 6rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.logo-small {
    width: 150px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 2rem;
    position: relative;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #0066cc;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: #bbb;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #0066cc;
}

.social-links svg {
    width: 20px;
    height: 20px;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.4rem;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 2rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 1rem;
}

.cookie-content p {
    margin-bottom: 2rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-settings-panel {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-setting {
    margin-bottom: 2rem;
}

.cookie-setting label {
    margin-left: 1rem;
    font-weight: 600;
}

.cookie-setting p {
    margin: 0.5rem 0 0 2.5rem;
    font-size: 1.4rem;
    color: #bbb;
}

.hidden {
    display: none;
}

/* Blog Main Page */
.blog-hero {
    padding: 6rem 0;
    background-color: #f1f7fc;
    text-align: center;
}

.blog-main {
    padding: 6rem 0;
}

.blog-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    padding: 1rem 2rem;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #0066cc;
    color: white;
    border-color: #0066cc;
}

.full-grid {
    margin-bottom: 4rem;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    background-color: #0066cc;
    color: white;
    border-color: #0066cc;
}

.pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.blog-subscribe {
    padding: 6rem 0;
    background-color: #f1f7fc;
}

.subscribe-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.subscribe-form {
    margin-top: 3rem;
}

.subscribe-form .form-group {
    display: flex;
}

.subscribe-form input {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.subscribe-form button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Blog Article Page */
.article-hero {
    padding: 6rem 0;
    background-color: #f1f7fc;
    position: relative;
}

.article-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.article-meta {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    color: #666;
}

.article-meta span {
    margin-right: 2rem;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 0;
}

.article-content h2 {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.article-content p {
    margin-bottom: 2rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 1rem;
}

.article-share {
    margin-top: 4rem;
    display: flex;
    align-items: center;
}

.article-share span {
    margin-right: 1.5rem;
    font-weight: 600;
}

.article-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 50%;
    margin-right: 1rem;
    transition: background-color 0.3s ease;
}

.article-share a:hover {
    background-color: #0066cc;
}

.article-share a:hover svg {
    color: white;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    padding: 3rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 6rem;
}

.nav-previous,
.nav-next {
    max-width: 45%;
}

.nav-label {
    display: block;
    font-size: 1.4rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.related-articles {
    padding: 6rem 0;
    background-color: #f8f8f8;
}

/* Thank You Page */
.thanks-section {
    padding: 10rem 0;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 3rem;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

/* Legal Pages */
.legal-section {
    padding: 6rem 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.last-updated {
    color: #888;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section-content {
    margin-bottom: 4rem;
}

.legal-section-content h2 {
    margin-bottom: 2rem;
    color: #0066cc;
}

.legal-section-content h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-section-content ul,
.legal-section-content ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.legal-section-content li {
    margin-bottom: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    html {
        font-size: 60%;
    }

    .hero .container,
    .about-content,
    .contact-content {
        flex-direction: column;
    }

    .hero-content,
    .about-text,
    .contact-text {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .stats {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 45%;
        margin-bottom: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 55%;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 8rem 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .main-nav .nav-list.active {
        right: 0;
    }

    .main-nav .nav-list li {
        margin: 0 0 2rem;
        width: 100%;
    }

    .main-nav .nav-list a {
        display: block;
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .close-menu {
        position: absolute;
        top: 2rem;
        right: 2rem;
        background: none;
        border: none;
        font-size: 2.4rem;
        cursor: pointer;
    }

    .activities-content,
    .culinary-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .subscribe-form .form-group {
        flex-direction: column;
    }

    .subscribe-form input {
        border-right: 1px solid #ddd;
        border-radius: 0.5rem;
        margin-bottom: 1rem;
    }

    .subscribe-form button {
        border-radius: 0.5rem;
        width: 100%;
    }

    .buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .destinations-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
    }
}
