/* ============================================
   Restaurant Seerose | Modern Redesign
   Klopeiner See, Kärnten
   ============================================ */

/* --- CSS Variables --- */
:root {
    --color-primary: #1a6b7a;
    --color-primary-dark: #145561;
    --color-primary-light: #e8f4f6;
    --color-accent: #c86447;
    --color-accent-hover: #b5573a;
    --color-gold: #d4a853;
    --color-text: #2c2c2c;
    --color-text-light: #5a5a5a;
    --color-bg: #fdfaf6;
    --color-bg-warm: #f5ede0;
    --color-bg-dark: #1a1a2e;
    --color-white: #ffffff;
    --color-border: #e0d8cc;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
    --nav-height: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--color-accent); }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: #1a1a2e;
}

.lead { font-size: 1.15rem; color: var(--color-text-light); margin-bottom: 1rem; }
.text-accent { color: var(--color-accent); }

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    background: rgba(200, 100, 71, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 650px;
    margin-bottom: 40px;
}

.section {
    padding: 100px 0;
}

/* --- Buttons --- */
.btn-primary, .btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}
.btn-primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
    background: white;
    color: var(--color-text);
    border-color: white;
    transform: translateY(-2px);
}

.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-block { display: block; text-align: center; width: 100%; }

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    height: var(--nav-height);
}

.navbar.scrolled {
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo .logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.nav-link {
    padding: 8px 16px;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.nav-link:hover {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.nav-cta {
    margin-left: 8px;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--color-text);
    border-radius: 3px;
    transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    background-image: 
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.45)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff10" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,213.3C672,224,768,224,864,197.3C960,171,1056,117,1152,106.7C1248,96,1344,128,1392,144L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>');
    background-size: cover, 100% auto;
    background-position: center, bottom;
    background-repeat: no-repeat;
    padding: 120px 24px 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(26,107,122,0.15) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-logo {
    height: 100px;
    width: auto;
    margin: 0 auto 30px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: white;
    margin-bottom: 16px;
    font-weight: 700;
}
.hero-title span {
    color: var(--color-accent);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-info {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.8rem;
    animation: bounce 2s infinite;
    opacity: 0.7;
    cursor: pointer;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* --- About Section --- */
.about { background: var(--color-white); }
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}
.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 500;
}
.feature-icon { font-size: 1.2rem; }

.image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid var(--color-accent);
    border-radius: var(--radius-lg);
    opacity: 0.2;
}
.image-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-accent);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.image-badge span {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-heading);
}
.image-badge small { font-size: 0.8rem; opacity: 0.9; }

.about-image { position: relative; }

/* --- Kulinarik Section --- */
.kulinarik {
    background: var(--color-bg);
}

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

.menu-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.menu-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.menu-card:hover .menu-card-img img {
    transform: scale(1.06);
}
.menu-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--color-accent);
    color: white;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.menu-card h3 {
    padding: 16px 20px 6px;
    font-size: 1.2rem;
}
.menu-card p {
    padding: 0 20px 20px;
    color: var(--color-text-light);
    font-size: 0.92rem;
}

.cta-center {
    text-align: center;
}
.cta-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* --- Pizza Section --- */
.pizza-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #162447 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pizza-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200,100,71,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.pizza-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pizza-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255,255,255,0.1);
}
.pizza-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.pizza-text .section-title { color: white; }
.pizza-text .lead, .pizza-text p { color: rgba(255,255,255,0.85); }
.pizza-text p { margin-bottom: 16px; }

.pizza-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
}
.pizza-highlights span {
    padding: 8px 14px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
}

.pizza-note {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-accent) !important;
    margin-top: 20px;
}

/* --- Gallery Section --- */
.galerie { background: var(--color-white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    position: relative;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s;
}
.gallery-item:hover::after {
    background: rgba(0,0,0,0.2);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

/* --- Team Section --- */
.team { background: var(--color-bg-warm); }

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

.team-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.team-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team-quote {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-primary);
    margin-top: 20px;
    padding: 20px;
    border-left: 4px solid var(--color-accent);
    background: rgba(255,255,255,0.6);
}
.team-signature { font-weight: 600; color: var(--color-text-light); margin-top: 8px; }

/* --- Contact Section --- */
.kontakt { background: var(--color-white); }

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

.kontakt-card {
    background: var(--color-bg);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.kontakt-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.hours-big {
    text-align: center;
    padding: 30px 20px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 2px dashed var(--color-border);
    margin-bottom: 20px;
}
.hours-big .days {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}
.hours-big .time {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-accent);
    font-family: var(--font-heading);
}
.hours-big .sub {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 4px;
}

.reservierung-hinweis {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    text-align: center;
}

address {
    font-style: normal;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.kontakt-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.kontakt-link {
    padding: 12px 16px;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: all 0.2s;
}
.kontakt-link:hover {
    background: var(--color-primary);
    color: white;
}

/* --- SEO Content --- */
.seo-content {
    background: var(--color-bg);
    padding: 60px 0;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.seo-block {
    padding: 24px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}
.seo-block h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-primary);
}
.seo-block p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(10);
}

.footer h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer ul {
    list-style: none;
}
.footer ul li { margin-bottom: 8px; }
.footer ul li a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer ul li a:hover { color: var(--color-gold); }

.footer p { font-size: 0.9rem; line-height: 1.8; }

.social-links { margin-top: 8px; }
.social-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.social-links a:hover { color: var(--color-gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

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

@media (max-width: 1024px) {
    .about-grid, .pizza-grid, .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image { order: -1; }
    .team-image { max-width: 400px; }
    .team-image img { height: 350px; }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .seo-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root { --nav-height: 64px; }
    .section { padding: 64px 0; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        align-items: stretch;
    }
    .nav-menu.active { right: 0; }
    .nav-toggle { display: flex; }
    .nav-link { padding: 12px 16px; font-size: 1rem; }
    .nav-cta { margin: 12px 0 0; text-align: center; }
    
    .hero { min-height: 90vh; padding: 100px 20px 60px; }
    .hero-logo { height: 70px; }
    .hero-info { flex-direction: column; gap: 8px; }
    
    .menu-grid { grid-template-columns: 1fr; }
    
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    
    .kontakt-grid { grid-template-columns: 1fr; }
    
    .seo-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    
    .about-features { grid-template-columns: 1fr; }
    
    .pizza-highlights { grid-template-columns: 1fr; }
    
    .image-frame img { height: 280px; }
    .pizza-image img { height: 280px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn-lg { width: 100%; text-align: center; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .hours-big .time { font-size: 1.8rem; }
}

/* --- Dropdown Menu --- */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 220px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    z-index: 1000;
    list-style: none;
    border: 1px solid var(--color-border);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu.open { display: block; }
.nav-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
    background: var(--color-primary-light);
    color: var(--color-primary);
}
@media (max-width: 768px) {
    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: var(--color-bg);
        margin-left: 12px;
    }
}
