/* ============================================
   HOTEL NEUHOLD - PREMIUM GASTHAUS DESIGN
   ============================================ */

:root {
    --primary-green: #3d5c3b;
    --dark-green: #2d4c2b;
    --accent-gold: #d4af37;
    --warm-brown: #8b7355;
    --soft-gray: #a89a8f;
    --cream: #f5f3f0;
    --off-white: #faf8f6;
    --text-dark: #2c2c2c;
    --text-gray: #666;
    --border-gray: #e5e5e5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TYPOGRAPHY & STYLING SYSTEM
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

h1 { font-size: 56px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }

p {
    margin-bottom: 15px;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary, .btn-secondary {
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-green);
    color: white;
}

.btn-primary:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 92, 59, 0.3);
}

.btn-secondary {
    background-color: var(--accent-gold);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: #c99f2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-large {
    padding: 16px 48px;
    font-size: 16px;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    border-bottom: 1px solid var(--border-gray);
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo img {
    height: 45px;
    object-fit: contain;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-btn {
    flex-shrink: 0;
    margin-left: 0 !important;
    color: white !important;
    background: linear-gradient(135deg, var(--primary-green), #2d4c2b) !important;
    padding: 12px 28px !important;
    font-size: 13px !important;
}

.nav-btn:hover {
    background: linear-gradient(135deg, #2d4c2b, var(--primary-green)) !important;
    color: white !important;
}

.nav-links a {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    padding-bottom: 3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-links a:hover::after {
    width: 100%;
}

.phone-link {
    color: var(--primary-green);
    font-weight: 600;
    margin-left: auto;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-dark);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 76, 43, 0.7) 0%, rgba(61, 92, 59, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    font-size: 64px;
    margin-bottom: 10px;
    animation: fadeInDown 0.8s ease-out 0.1s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    position: relative;
    animation: scroll 1.5s infinite;
}

.hero-scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: white;
    border-radius: 1px;
    animation: scrollDot 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes scrollDot {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 100px 20px;
}

.section-light {
    background-color: var(--off-white);
}

.section-dark {
    background-color: var(--primary-green);
    color: white;
}

.section-white {
    background-color: white;
}

.section-newsletter {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light .section-title {
    color: white;
}

.section-title {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 48px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 15px auto 25px;
    border-radius: 2px;
}

.section-divider.gold {
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 300;
}

.section-header.light .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   ZIMMER SECTION
   ============================================ */

.zimmer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.zimmer-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.zimmer-card:nth-child(1) { animation-delay: 0.1s; }
.zimmer-card:nth-child(2) { animation-delay: 0.2s; }
.zimmer-card:nth-child(3) { animation-delay: 0.3s; }

.zimmer-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.zimmer-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.zimmer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.zimmer-card:hover .zimmer-image img {
    transform: scale(1.08);
}

.zimmer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-green);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.zimmer-badge.premium {
    background: var(--accent-gold);
    color: var(--text-dark);
}

.zimmer-badge.luxury {
    background: #c99f2e;
    color: white;
}

.zimmer-info {
    padding: 30px;
}

.zimmer-info h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.zimmer-description {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.zimmer-features {
    list-style: none;
    margin: 15px 0;
    font-size: 13px;
    color: var(--text-gray);
}

.zimmer-features li {
    padding: 5px 0;
}

.zimmer-cta {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
}

.zimmer-cta p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* ============================================
   RESTAURANT SECTION
   ============================================ */

.restaurant-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.restaurant-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-header.light {
    text-align: left;
    margin-bottom: 30px;
}

.section-header.light .section-divider {
    margin-left: 0;
}

.restaurant-intro {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.restaurant-highlights {
    margin: 40px 0;
    padding: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.highlight {
    display: flex;
    gap: 30px;
    padding: 25px 0;
    align-items: flex-start;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.highlight:last-child {
    border-bottom: none;
}

.highlight:hover {
    padding-left: 10px;
}

.highlight-icon {
    font-size: 48px;
    min-width: 60px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.2));
}

.highlight h4 {
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-size: 22px;
}

.highlight p {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
}

.restaurant-times {
    margin: 30px 0;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

.restaurant-times h4 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.restaurant-times p {
    margin: 5px 0;
    font-size: 14px;
}

.restaurant-right {
    position: relative;
    opacity: 0;
    animation: fadeInRight 0.8s ease-out forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.restaurant-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.restaurant-right:hover .restaurant-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.restaurant-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}

/* ============================================
   SPEISEKARTE TEASER
   ============================================ */

.speisen-teaser {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.speise-highlight {
    padding: 30px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.speise-highlight:nth-child(1) { animation-delay: 0.1s; }
.speise-highlight:nth-child(2) { animation-delay: 0.2s; }
.speise-highlight:nth-child(3) { animation-delay: 0.3s; }

.speise-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.speise-highlight h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.speise-highlight p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.speise-price {
    background: linear-gradient(135deg, var(--accent-gold), #c9a236);
    color: var(--dark-green);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    display: inline-block;
    margin-left: 8px;
}

.speisen-cta {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
}

/* ============================================
   AUSFLUGSZIELE SECTION
   ============================================ */

.ausflugsziele-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.ausflugsziel-card {
    padding: 35px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.ausflugsziel-card:nth-child(1) { animation-delay: 0.1s; }
.ausflugsziel-card:nth-child(2) { animation-delay: 0.2s; }
.ausflugsziel-card:nth-child(3) { animation-delay: 0.3s; }
.ausflugsziel-card:nth-child(4) { animation-delay: 0.4s; }

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

.ausflugsziel-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.ausflugsziel-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.ausflugsziel-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.link-arrow {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ausflugsziel-card:hover .link-arrow {
    transform: translateX(5px);
}

/* ============================================
   ÜBER UNS SECTION
   ============================================ */

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.about-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.stat h4 {
    font-size: 32px;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.stat p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.about-image {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out forwards;
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.about-wrapper:hover .about-image img {
    transform: scale(1.05);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    padding: 35px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.testimonial:nth-child(1) { animation-delay: 0.1s; }
.testimonial:nth-child(2) { animation-delay: 0.2s; }
.testimonial:nth-child(3) { animation-delay: 0.3s; }

.stars {
    color: var(--accent-gold);
    font-size: 16px;
    margin-bottom: 15px;
    display: block;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 13px;
    margin: 0;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

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

.newsletter-content h2 {
    margin-bottom: 15px;
    font-size: 40px;
}

.newsletter-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* ============================================
   KONTAKT SECTION
   ============================================ */

.kontakt-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.kontakt-info h3 {
    color: var(--accent-gold);
    margin-bottom: 30px;
}

.kontakt-details {
    margin-bottom: 40px;
}

.detail {
    margin-bottom: 25px;
}

.detail h4 {
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.detail p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.detail a {
    color: var(--accent-gold);
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.detail a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: var(--accent-gold);
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-gold);
    color: var(--primary-green);
}

.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin: 5px 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 15px;
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

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

    .menu-toggle {
        display: block;
    }

    .hero {
        height: 500px;
        margin-top: 0;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .section {
        padding: 60px 20px;
    }

    .restaurant-wrapper,
    .about-wrapper,
    .kontakt-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zimmer-grid,
    .speisen-teaser,
    .ausflugsziele-grid {
        grid-template-columns: 1fr;
    }

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

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

    .about-stats {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    h1 { font-size: 40px; }
    h2 { font-size: 28px; }
    h3 { font-size: 20px; }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .nav-links {
        gap: 10px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 13px;
    }

    .footer-content {
        gap: 30px;
    }

    /* Ankündigungen Modal */
    .announcement-modal-content {
        width: 90%;
        max-width: 600px;
    }
}

/* ============================================
   ANKÜNDIGUNGEN CONTAINER - MEHRERE ANKÜNDIGUNGEN
   ============================================ */

.announcements-container {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    max-width: 100%;
    background: transparent;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
    animation: slideDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-sizing: border-box;
}

@keyframes slideDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100px);
        opacity: 0;
    }
}

.announcement-item-inline {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 14px 16px;
    border-left: 4px solid var(--accent-gold);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: slideUp 0.5s ease-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.announcement-item-inline.info {
    border-left-color: #2196f3;
}

.announcement-item-inline.warning {
    border-left-color: #ff9800;
}

.announcement-item-inline.success {
    border-left-color: #4caf50;
}

.announcement-item-inline.special {
    border-left-color: var(--accent-gold);
}

.announcement-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.announcement-content {
    flex: 1;
}

.announcement-title-inline {
    font-weight: 600;
    color: var(--dark-green);
    font-size: 14px;
    margin-bottom: 4px;
}

.announcement-message-inline {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

.announcement-close-inline {
    flex-shrink: 0;
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.announcement-close-inline:hover {
    color: var(--dark-green);
}

/* Responsive: Tablet */
@media (max-width: 768px) {
    .announcements-container {
        top: 75px;
        padding: 12px 16px;
        gap: 9px;
    }

    .announcement-item-inline {
        padding: 12px 14px;
        gap: 10px;
    }

    .announcement-icon {
        font-size: 18px;
    }

    .announcement-title-inline {
        font-size: 13px;
    }

    .announcement-message-inline {
        font-size: 12px;
    }
}

/* Responsive: Mobile */
@media (max-width: 480px) {
    .announcements-container {
        top: 90px;
        padding: 10px 12px;
        gap: 8px;
    }

    .announcement-item-inline {
        padding: 11px 12px;
        gap: 10px;
        position: relative;
    }

    .announcement-icon {
        font-size: 16px;
        flex-shrink: 0;
    }

    .announcement-content {
        flex: 1;
    }

    .announcement-title-inline {
        font-size: 12px;
        margin-bottom: 2px;
    }

    .announcement-message-inline {
        font-size: 11px;
        line-height: 1.3;
    }

    .announcement-close-inline {
        flex-shrink: 0;
        font-size: 16px;
    }
}

/* ============================================
   ANKÜNDIGUNGEN MODAL STYLING - PREMIUM DESIGN
   ============================================ */

.announcement-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 76, 43, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeInBackdrop 0.4s ease;
}

@keyframes fadeInBackdrop {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(4px);
    }
}

@keyframes slideUpScale {
    from {
        transform: translateY(40px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.announcement-modal-content {
    background: linear-gradient(180deg, #faf8f6 0%, #f5f3f0 100%);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(45, 76, 43, 0.25),
                0 10px 30px rgba(212, 175, 55, 0.1);
    width: 90%;
    max-width: 750px;
    animation: slideUpScale 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    position: relative;
}

/* Decorative top border */
.announcement-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold), var(--primary-green));
}

.announcement-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 28px;
    cursor: pointer;
    color: var(--dark-green);
    transition: all 0.3s ease;
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    z-index: 10;
}

.announcement-close:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
    transform: rotate(90deg);
}

.announcement-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
}

/* Header decorative background */
.announcement-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.announcement-header h2 {
    margin: 0;
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.announcement-type-icon {
    font-size: 40px;
    display: inline-block;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.announcement-body {
    padding: 40px 35px;
    font-size: 17px;
    line-height: 1.9;
    color: var(--dark-gray);
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.announcement-body p {
    margin: 0;
    word-spacing: 0.05em;
}

.announcement-footer {
    background: linear-gradient(90deg, rgba(61, 92, 59, 0.03) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 25px 35px;
    display: flex;
    justify-content: center;
    gap: 12px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.announcement-footer .btn-primary {
    min-width: 160px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.announcement-footer .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(61, 92, 59, 0.3);
}

/* Type-specific styling - elegant & premium */
.announcement-modal-content[data-type="info"] .announcement-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f66 100%);
}

.announcement-modal-content[data-type="warning"] .announcement-header {
    background: linear-gradient(135deg, #d97706 0%, #92400e 100%);
}

.announcement-modal-content[data-type="success"] .announcement-header {
    background: linear-gradient(135deg, #059669 0%, #065f46 100%);
}

.announcement-modal-content[data-type="special"] .announcement-header {
    background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
}

.announcement-modal-content[data-type="special"] .announcement-header h2 {
    color: #faf8f6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive - Mobile optimization */
@media (max-width: 768px) {
    .announcement-modal-content {
        width: 92%;
        border-radius: 16px;
        box-shadow: 0 15px 50px rgba(45, 76, 43, 0.3);
    }

    .announcement-header {
        padding: 30px 25px;
    }

    .announcement-header h2 {
        font-size: 26px;
        gap: 12px;
    }

    .announcement-type-icon {
        font-size: 32px;
    }

    .announcement-body {
        padding: 25px;
        font-size: 15px;
        line-height: 1.7;
    }

    .announcement-footer {
        padding: 20px 25px;
    }

    .announcement-footer .btn-primary {
        min-width: 140px;
        padding: 11px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .announcement-modal-content {
        width: 94%;
    }

    .announcement-header {
        padding: 25px 20px;
    }

    .announcement-header h2 {
        font-size: 22px;
        gap: 10px;
    }

    .announcement-type-icon {
        font-size: 28px;
    }

    .announcement-body {
        padding: 20px;
        font-size: 14px;
        min-height: 80px;
    }

    .announcement-footer {
        padding: 15px 20px;
    }

    .announcement-close {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}
