/* Local Fonts */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('inter-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('playfair-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url('playfair-700-italic.woff2') format('woff2');
}

:root {
    --primary-gradient: linear-gradient(135deg, #5b6b47 0%, #879b69 100%);
    --primary-color: #5b6b47;
    --secondary-color: #f5f4f0;
    --text-dark: #2a2c26;
    --text-muted: #6b6e64;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --border-radius: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Typography Utilities */
.text-center { text-align: center; }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    gap: 10px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(91, 107, 71, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(91, 107, 71, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    font-size: 0.95rem;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-smooth);
}

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

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Sections General */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('aussen.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero-logo-small img {
    height: 100px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background-color: var(--white);
}

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

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.section-tag {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #e8e6dc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Menu Teaser */
@media (max-width: 768px) {
    .menu-teaser-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Gallery Section */
.gallery {
    background-color: var(--secondary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Reviews */
.reviews {
    background-color: var(--white);
}

.review-stats {
    margin-bottom: 50px;
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.google-logo img {
    height: 18px;
}

/* Review CTA Box */
.review-cta-box {
    background: #e8e6dc;
    padding: 50px;
    border-radius: var(--border-radius);
    text-align: center;
}

.review-cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.review-cta-box p {
    margin-bottom: 30px;
    color: var(--text-muted);
}

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

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 30px;
    border-radius: var(--border-radius);
}

.info-card h4 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

.hours-table {
    width: 100%;
}

.hours-table div {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-table div:last-child {
    border-bottom: none;
}

.hours-table .closed {
    color: #e74c3c;
    font-weight: 600;
}

/* Form */
.contact-form-panel {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fcfcfc;
    font-family: inherit;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(91, 107, 71, 0.1);
}

/* Footer */
footer {
    background: #120e24;
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Deaktivierung nur für Speisekarte auf Mobile */
@media (max-width: 1100px) {
    .menu-page .fade-in-section {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    transition: 0.5s cubic-bezier(0.85, 0.01, 0.18, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.mobile-nav-links .btn {
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Floating Reservieren Button */
.floating-reservieren {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(91, 107, 71, 0.4);
}

/* Eucalyptus Decorative Elements */
.decor-eucalyptus {
    position: absolute;
    height: 350px;
    z-index: 0;
    opacity: 0.25;
    pointer-events: none;
    display: none;
}

.decor-right {
    top: auto;
    bottom: -80px;
    right: -120px;
    transform: rotate(-15deg);
    transform-origin: bottom right;
}

.decor-left {
    top: auto;
    bottom: -80px;
    left: -120px;
    transform: rotate(15deg);
    transform-origin: bottom left;
}

@media (min-width: 768px) {
    .decor-eucalyptus {
        display: block;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .review-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1100px) {
    section {
        padding: 60px 0;
    }
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .review-cards {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-form-panel, .info-card, .review-cta-box {
        padding: 30px 20px;
    }
    .floating-reservieren {
        display: flex;
        bottom: 20px;
        right: 20px;
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .tageskarte-content {
        padding: 25px 20px !important;
    }
}

/* Social Links */
.social-link {
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    vertical-align: middle;
}

.social-link ion-icon {
    font-size: 1.6rem !important;
    display: block;
}

/* Spezifische Positionierung im Header */
.nav-links .social-link {
    margin-left: 5px;
    margin-right: 5px;
}

/* Zentrierung im Burger-Menü */
.mobile-nav-links .social-link {
    margin: 10px auto;
    width: 100%;
}

.social-link:hover {
    color: var(--primary-color);
    transform: scale(1.15);
}

/* Form Feedback & Animations */
.form-success {
    text-align: center;
    padding: 20px 0;
    animation: fadeIn 0.5s ease-out;
}

.success-icon {
    font-size: 4rem;
    color: #5b6b47;
    margin-bottom: 20px;
}

.form-success h3 {
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-muted);
}

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

.spin {
    animation: rotate 2s linear infinite;
    display: inline-block;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}



