:root {
    --greek-blue: #0d47a1;
    --greek-light-blue: #1565c0;
    --white: #ffffff;
    --cream: #fdfbf7;
    --light-gray: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-gray: #5f6368;
    --border: #e0e0e0;
    --gold: #c9a961;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-lg: rgba(0, 0, 0, 0.12);
    --green: #2e7d32;
    --red: #c62828;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    width: 100%;
    max-width: 100vw;
}

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


.demo-banner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff3cd;
    border-bottom: 2px solid #ffc107;
    padding: 1rem 2rem;
    z-index: 10000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.demo-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.demo-content p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
}

.accept-btn {
    background-color: #856404;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.accept-btn:hover {
    background-color: #6c5003;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: white;
    padding: 1.25rem 2rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    flex: 1;
    min-width: 280px;
}

.cookie-content .privacy-link {
    color: #fbbf24;
    text-decoration: underline;
}

.cookie-content .privacy-link:hover {
    color: #f59e0b;
}

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

.btn-decline,
.btn-accept {
    padding: 0.65rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: none;
}

.btn-decline {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-accept {
    background-color: #fbbf24;
    color: #1a1a1a;
}

.btn-accept:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
}


header {
    background-color: var(--white);
    padding: 1.25rem 0;
    box-shadow: 0 2px 8px var(--shadow);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

header .container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-family: 'Caesar Dressing', cursive;
    font-size: 2rem;
    color: var(--greek-blue);
    letter-spacing: 0.05em;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    justify-content: center;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--greek-blue);
}

.btn-order {
    background-color: var(--greek-blue);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-order:hover {
    background-color: var(--greek-light-blue);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span,
.mobile-menu-toggle .hamburger {
    width: 30px;
    height: 3px;
    background-color: var(--greek-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}


.hero {
    position: relative;
    background: linear-gradient(135deg, var(--greek-blue) 0%, var(--greek-light-blue) 100%);
    color: var(--white);
    padding: 10rem 2rem 8rem;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.03) 50px,
            rgba(255, 255, 255, 0.03) 100px
        );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.hero-title {
    font-family: 'Caesar Dressing', cursive;
    font-size: 5.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero-tagline {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: #b8994e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--greek-blue);
}


.quick-info {
    background-color: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

.info-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item strong {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--greek-blue);
}

.info-item span {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.info-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--greek-blue);
}


section {
    padding: 6rem 2rem;
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Caesar Dressing', cursive;
    font-size: 3.5rem;
    color: var(--greek-blue);
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}


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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.menu-category {
    background-color: var(--cream);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--shadow-lg);
}

.category-header {
    padding: 1.5rem 2rem 1rem;
    border-bottom: 2px solid var(--gold);
}

.category-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--greek-blue);
    font-weight: 600;
    margin: 0;
}

.menu-items {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item-hidden {
    display: none;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    gap: 1rem;
}

.item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.item-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--greek-blue);
    white-space: nowrap;
}

.item-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.menu-toggle {
    text-align: center;
    margin: 3rem 0;
}

.toggle-btn {
    background-color: var(--greek-blue);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.toggle-btn:hover {
    background-color: var(--greek-light-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-lg);
}

.menu-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
    text-align: center;
}

.tax-info,
.pfand-info {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}


.about-section {
    background-color: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
}

.about-main h3,
.about-features h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--greek-blue);
    margin-bottom: 1.5rem;
}

.about-main .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-main p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--greek-blue);
    font-weight: bold;
    font-size: 1.2rem;
}


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

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.contact-card {
    background-color: var(--cream);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--shadow-lg);
}

.card-header {
    padding: 1.5rem 2rem 1rem;
    border-bottom: 2px solid var(--gold);
}

.card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--greek-blue);
    font-weight: 600;
    margin: 0;
}

.card-content {
    padding: 1.5rem 2rem;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

.card-content p + p {
    margin-top: 0.75rem;
}

.card-content a {
    color: var(--greek-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.card-content a:hover {
    color: var(--greek-light-blue);
    text-decoration: underline;
}

.card-subtext {
    font-size: 0.9rem !important;
    color: var(--text-gray) !important;
}

.map-section {
    background-color: var(--light-gray);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.map-header {
    padding: 1.5rem 2rem 1rem;
    border-bottom: 2px solid var(--gold);
    background-color: var(--white);
}

.map-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--greek-blue);
    margin: 0;
    text-align: center;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    display: block;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border: 2px dashed var(--border);
}

.map-placeholder-content {
    text-align: center;
    padding: 2rem;
    max-width: 400px;
}

.map-placeholder-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.map-placeholder-content strong {
    font-size: 1.1rem;
    color: var(--greek-blue);
}

.btn-accept-map {
    background-color: var(--greek-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.btn-accept-map:hover {
    background-color: var(--greek-light-blue);
    transform: translateY(-2px);
}

.directions-info {
    padding: 1.5rem 2rem;
    background-color: var(--white);
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.direction-item {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.direction-item strong {
    color: var(--greek-blue);
    font-weight: 600;
    display: inline-block;
    min-width: 90px;
}


footer {
    background-color: #2d2d2d;
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-logo {
    font-family: 'Caesar Dressing', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
    color: var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3 {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--gold);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-maintained {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 1rem 0 0;
}

.footer-maintained a {
    color: var(--gold);
    text-decoration: none;
}

.footer-maintained a:hover {
    text-decoration: underline;
}


@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .demo-content,
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .header-main {
        flex-direction: row !important;
        justify-content: space-between !important;
    }

    .logo {
        font-size: 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background-color: var(--white);
    }

    nav.active {
        max-height: 500px;
        border-top: 1px solid var(--border);
    }

    nav ul {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
    }

    nav li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    nav li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: left;
    }

    nav a:hover {
        background-color: var(--light-gray);
    }

    .btn-order {
        margin: 1rem 1.5rem;
        width: calc(100% - 3rem);
        text-align: center;
    }

    .hero {
        padding: 6rem 1.5rem 5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-intro {
        margin-bottom: 3rem;
    }

    .quick-info {
        padding: 1.5rem 0;
    }

    .info-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 5rem 1rem 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-logo {
        font-size: 2rem;
    }

    .map-container {
        height: 280px;
    }

    .direction-item strong {
        display: block;
        margin-bottom: 0.25rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}


.legal-section {
    background-color: var(--white);
    padding: 6rem 2rem;
    min-height: 60vh;
}

.legal-section .container {
    max-width: 900px;
}

.legal-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Caesar Dressing', cursive;
    font-size: 3.5rem;
    color: var(--greek-blue);
    font-weight: 400;
}

.legal-content {
    background-color: var(--cream);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px var(--shadow);
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--greek-blue);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
    font-weight: 600;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 1.1rem;
    color: var(--greek-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.legal-content a {
    color: var(--greek-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    word-wrap: break-word;
}

.legal-content a:hover {
    color: var(--greek-light-blue);
    text-decoration: underline;
}

.legal-content ul {
    margin: 1.25rem 0;
    padding-left: 2rem;
    list-style-type: disc;
}

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.demo-notice {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.demo-notice strong {
    color: #856404;
}

.pickup-notice {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    margin-top: 1.5rem;
}




@media (max-width: 768px) {
    .legal-section {
        padding: 4rem 1.5rem;
    }

    .legal-section .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }

    .legal-content h4 {
        font-size: 1.05rem;
    }

    .legal-content p,
    .legal-content ul li {
        font-size: 0.95rem;
    }

    .legal-content ul {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legal-section {
        padding: 3rem 1rem;
    }

    .legal-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .legal-content {
        padding: 1.5rem 1rem;
    }

    .legal-content h2 {
        font-size: 1.35rem;
        margin-top: 2rem;
    }

    .legal-content h3 {
        font-size: 1.1rem;
    }

    .legal-content h4 {
        font-size: 1rem;
    }

    .legal-content p,
    .legal-content ul li {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .demo-notice {
        padding: 1rem;
        font-size: 0.9rem;
    }
}
