/*
Theme Name: Bistro MILA
Theme URI: https://bistromila.pl
Author: Bistro MILA
Author URI: https://bistromila.pl
Description: Custom dark theme for Bistro MILA restaurant with reservations, menu, events, and online ordering
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bistro-mila
*/

/* ========================================
   CSS Variables for Theme Colors
======================================== */
:root {
    --primary-navy: #2B2C5A;
    --secondary-navy: #1a1b3d;
    --accent-blue: #3a3b6e;
    --light-gray: #c5c5c5;
    --dark-gray: #2d2d2d;
    --text-light: #e8e8e8;
    --text-white: #ffffff;
    --bg-overlay: rgba(43, 44, 90, 0.5);
    --gold-accent: #D4A574;
    --copper-accent: #B87333;
    --warm-beige: #F5F1E8;
}

/* ========================================
   Global Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    background-color: var(--secondary-navy);
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(184, 115, 51, 0.03) 0%, transparent 50%);
}

a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-accent);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    letter-spacing: 0.5px;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }

p, label, input, textarea, select, button {
    font-family: 'Lato', 'Arial', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Container & Layout
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.8rem;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold-accent), transparent);
}

.section-title::before {
    content: '◆';
    display: block;
    color: var(--copper-accent);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* ========================================
   Header & Navigation
======================================== */
.site-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, rgba(43, 44, 90, 0.98) 100%);
    padding: 10px 0; /* mniej miejsca w pionie */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    border-bottom: none; /* usunięty border */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

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

.site-logo img {
    max-height: 120px; /* zmniejszone */
    width: auto;
}

@media (max-width: 768px) {
    .site-logo img {
        max-height: 90px;
    }
}

.site-title {
    font-size: 2rem;
    color: var(--gold-accent);
    margin: 0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: var(--text-light);
    font-weight: 500;
    padding: 10px 15px;
    display: block;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: var(--gold-accent);
    background-color: var(--accent-blue);
    border-radius: 4px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
    background: 
        linear-gradient(var(--bg-overlay), var(--bg-overlay)),
        url('images/Wersja_2.jpg') center/cover no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

/* Wyłącz parallax na urządzeniach mobilnych */
@media (max-width: 1024px) {
    .hero-section {
        background-attachment: scroll !important;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    animation: heroGlow 4s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes heroGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--gold-accent);
    margin-bottom: 25px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-content > div {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--warm-beige);
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7);
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold-accent), var(--copper-accent));
    color: var(--secondary-navy);
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-accent);
    border: 2px solid var(--gold-accent);
    box-shadow: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--gold-accent), var(--copper-accent));
    color: var(--secondary-navy);
    border-color: transparent;
}

/* ========================================
   Features Grid
======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, rgba(43, 44, 90, 0.8) 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, var(--gold-accent), var(--copper-accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

.feature-card i {
    font-size: 3.5rem;
    color: var(--gold-accent);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--gold-accent);
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* ========================================
   Forms
======================================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-white);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--dark-gray);
    border: 1px solid var(--accent-blue);
    border-radius: 5px;
    color: var(--text-white);
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
}

/* ========================================
   Contact Form 7 Styles
======================================== */
.wpcf7 {
    font-family: 'Lato', 'Arial', sans-serif;
}

.wpcf7-form {
    max-width: 100%;
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.wpcf7-form-control-wrap label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-white);
    font-weight: 500;
    font-size: 1rem;
}

.wpcf7-form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--dark-gray);
    border: 1px solid var(--accent-blue);
    border-radius: 5px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: 'Lato', 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.wpcf7-form-control:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.wpcf7-form-control:not(textarea):not(select) {
    height: auto;
}

.wpcf7-textarea {
    min-height: 120px;
    resize: vertical;
}

.wpcf7-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4A574' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 40px;
}

.wpcf7-form-control[type="time"],
.wpcf7-form-control[type="date"],
.wpcf7-form-control[type="datetime-local"] {
    cursor: pointer;
    color-scheme: dark;
}

.wpcf7-form-control[type="time"]::-webkit-calendar-picker-indicator,
.wpcf7-form-control[type="date"]::-webkit-calendar-picker-indicator,
.wpcf7-form-control[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 1;
}

input[type="time"].wpcf7-form-control,
input[type="date"].wpcf7-form-control {
    position: relative;
}

input[type="time"].wpcf7-form-control::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D4A574'%3E%3Cpath d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");
    filter: none;
    width: 20px;
    height: 20px;
}

.wpcf7-submit {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold-accent), var(--copper-accent));
    color: var(--secondary-navy);
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    width: 100%;
}

.wpcf7-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.wpcf7-submit:hover::before {
    width: 300px;
    height: 300px;
}

.wpcf7-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
}

.wpcf7-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.wpcf7-mail-sent-ok,
.wpcf7-mail-sent-ng,
.wpcf7-validation-errors,
.wpcf7-spam,
.wpcf7-acceptance-missing {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}

.wpcf7-mail-sent-ok {
    background-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors,
.wpcf7-spam,
.wpcf7-acceptance-missing {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
}

.wpcf7-validation-errors p {
    margin: 0;
    color: #dc3545;
}

.wpcf7-not-valid-tip {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
}

.wpcf7-not-valid {
    border-color: #dc3545 !important;
}

.wpcf7 .ajax-loader {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    width: 16px;
    height: 16px;
}

/* ========================================
   Menu Section
======================================== */

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

.menu-item {
    opacity: 1;
    transition: all 0.3s ease;
}

.menu-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.menu-item-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.menu-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.menu-item-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    width: 100%;
    background: #f0f0f0;
}

.menu-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
    flex-shrink: 0;
    background: #f0f0f0;
}

.menu-item-card:hover .menu-image {
    transform: scale(1.1);
}

/* Menu Modal Styles */
.menu-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.menu-modal-content {
    background-color: var(--text-light);
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.menu-modal-header {
    background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
    color: var(--text-light);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px 15px 0 0;
}

.menu-modal-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.menu-modal-close {
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.menu-modal-close:hover {
    color: var(--gold-accent);
}

.menu-modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
}

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

.menu-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.menu-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Menu item click hint */
.menu-item-click-hint {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-light);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 3;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.menu-item-card:hover .menu-item-click-hint {
    opacity: 1;
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.8);
}

@keyframes pulse {
    0% { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4); }
    100% { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); }
}

.menu-item-card {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: auto;
    z-index: 1;
}

.menu-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.menu-item-card:hover .menu-image {
    transform: scale(1.08);
}

.menu-item-card:hover .menu-item-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.menu-item-card:active {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.menu-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
    pointer-events: none;
    z-index: 2;
}

.menu-item-card:hover .menu-item-overlay {
    opacity: 1;
}

.menu-item-price-badge {
    background: var(--gold-accent);
    color: var(--primary-navy);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    z-index: 2;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-item-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-title {
    margin: 0 0 15px 0;
    color: var(--primary-navy);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.menu-item-category {
    margin-top: auto;
}

.category-tag {
    display: inline-block;
    background: var(--light-gray);
    color: var(--primary-navy);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
}

/* Responsive Menu */
@media (max-width: 768px) {
    .menu-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-item-image {
        height: 200px;
    }
    
.menu-item-content {
    padding: 20px;
}

.menu-item-description {
    color: #333 !important;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 10px;
    font-weight: 500;
}
    
.menu-item-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
    text-align: center;
}
}

/* ========================================
   Responsive Menu Descriptions
======================================== */

/* Tablet - medium description */
@media (max-width: 768px) {
    .menu-item-description {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #333 !important;
        font-weight: 500;
    }
}

/* Desktop - compact but visible description */
@media (min-width: 769px) {
    .menu-item-description {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #333 !important;
        font-weight: 500;
    }
    
    .menu-item-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
        font-weight: 700;
    }
    
    .menu-item-content {
        padding: 15px;
    }
}

/* ========================================
   Bar Section
======================================== */
.bar-image-container {
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bar-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.bar-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.bar-image-container:hover .bar-image {
    transform: scale(1.05);
}

/* Responsive bar image */
@media (max-width: 768px) {
    .bar-image {
        height: 250px;
    }
    
    .bar-image-container {
        margin: 30px 0;
        border-radius: 15px;
    }
}

/* ========================================
   Menu Lista Styles
======================================== */

/* Menu Lista Section */
.menu-lista-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    margin-bottom: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.menu-lista-section .section-title {
    text-align: center;
    color: var(--dark-gray);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.menu-lista-section .section-subtitle {
    text-align: center;
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-style: italic;
}

.menu-gallery-section {
    margin-top: 60px;
}

.menu-gallery-section .section-title {
    color: var(--gold-accent);
    font-size: 2.2rem;
}

.menu-gallery-section .section-subtitle {
    color: var(--light-gray);
    font-size: 1rem;
}

/* Menu Info Overlay Styles */
.menu-info-overlay {
    background: linear-gradient(135deg, var(--gold-accent) 0%, #c9a845 100%);
    padding: 50px 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.menu-info-content h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.menu-info-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 30px;
}

.menu-info-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.highlight-item i {
    font-size: 1.5rem;
    color: white;
}

/* Menu Gazetka Styles */
.menu-gazetka-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-gazetka-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.menu-gazetka-gallery {
    display: flex;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.menu-gazetka-item {
    flex: 0 0 50%;
    width: 50%;
    background: white;
    transition: transform 0.5s ease;
    position: relative;
}

.menu-gazetka-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    border-radius: 0;
}

.gazetka-page-number {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.gazetka-nav-btn {
    background: var(--gold-accent);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.gazetka-nav-btn:hover {
    background: #d4af37;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.gazetka-nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.gazetka-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.gazetka-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gazetka-dot.active {
    background: var(--gold-accent);
    transform: scale(1.2);
}

.gazetka-dot:hover {
    background: var(--gold-accent);
    transform: scale(1.1);
}

/* Responsive Menu Gazetka */
@media (max-width: 768px) {
    .menu-info-overlay {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .menu-info-content h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .menu-info-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .menu-info-highlights {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    
    .highlight-item {
        font-size: 0.9rem;
    }
    
    .highlight-item i {
        font-size: 1.2rem;
    }
    
    .menu-gazetka-wrapper {
        gap: 10px;
        margin-top: 30px;
    }
    
    .menu-gazetka-container {
        padding: 0 15px;
    }
    
    .menu-gazetka-item {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .gazetka-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gazetka-page-number {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

/* Menu Navigation */
.menu-navigation {
    text-align: center;
    margin-bottom: 40px;
}

.menu-nav-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.menu-nav-btn {
    background: transparent;
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.menu-nav-btn:hover,
.menu-nav-btn.active {
    background: var(--gold-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Menu Categories */
.menu-category {
    margin-bottom: 50px;
    opacity: 1;
    transition: all 0.3s ease;
}

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

.category-title {
    color: var(--gold-accent);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

/* Category title in lista section */
.menu-lista-section .category-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: left;
    color: var(--dark-gray);
    border-bottom: 2px solid var(--gold-accent);
    padding-bottom: 10px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-accent);
    border-radius: 2px;
}

/* Menu Items */
.menu-items {
    display: grid;
    gap: 20px;
}

/* Menu Items List (for lista section) */
.menu-items-list {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold-accent);
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.menu-item-info h3 {
    color: var(--dark-gray);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.menu-item-info h4 {
    color: var(--dark-gray);
    font-size: 1.2rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.menu-item-info p {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.menu-item-price {
    color: var(--gold-accent);
    font-size: 1.4rem;
    font-weight: 700;
    white-space: nowrap;
    margin-left: 20px;
}

/* Responsive Menu Lista */
@media (max-width: 768px) {
    .menu-nav-buttons {
        gap: 10px;
    }
    
    .menu-nav-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .menu-item-price {
        margin-left: 0;
        align-self: flex-end;
    }
    
    .category-title {
        font-size: 1.6rem;
    }
}

/* ========================================
   Gallery
======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* ========================================
   Events Section
======================================== */
.events-list {
    display: grid;
    gap: 30px;
}

.event-item {
    background: linear-gradient(135deg, var(--primary-navy) 0%, rgba(43, 44, 90, 0.9) 100%);
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid var(--gold-accent);
    display: flex;
    gap: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.event-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.event-date {
    text-align: center;
    padding: 25px 20px;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-navy));
    border-radius: 15px;
    min-width: 100px;
    border: 2px solid var(--gold-accent);
}

.event-date .day {
    font-size: 3rem;
    color: var(--gold-accent);
    font-weight: 900;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.event-date .month {
    text-transform: uppercase;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 5px;
}

.event-details h3 {
    color: var(--gold-accent);
    margin-bottom: 10px;
    font-size: 1.6rem;
}

/* ========================================
   Contact Section
======================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item i {
    color: var(--gold-accent);
    font-size: 1.5rem;
    width: 30px;
}

.opening-hours {
    background: linear-gradient(135deg, var(--primary-navy) 0%, rgba(43, 44, 90, 0.9) 100%);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    border: 2px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.opening-hours h3 {
    color: var(--gold-accent);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.4rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    font-family: 'Lato', sans-serif;
}

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

.hours-item span:first-child {
    color: var(--text-light);
}

.hours-item span:last-child {
    color: var(--gold-accent);
    font-weight: 700;
}

/* ========================================
   Social Media Links
======================================== */
.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: nowrap;
}

/* Hide any empty social links */
.social-link:empty,
.social-link:not([href]),
.social-link[href="#"] {
    display: none;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
    border-radius: 50%;
    border: 2px solid var(--gold-accent);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--gold-accent), var(--copper-accent));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    border-color: var(--copper-accent);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}

.social-link i {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-link:hover i {
    color: var(--secondary-navy);
}

/* ========================================
   Footer
======================================== */
.site-footer {
    background: linear-gradient(180deg, var(--secondary-navy) 0%, var(--primary-navy) 100%);
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 4px solid transparent;
    border-image: linear-gradient(to right, transparent, var(--gold-accent), transparent) 1;
    position: relative;
}

.site-footer::before {
    content: '◆ ◆ ◆';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-accent);
    font-size: 1.2rem;
    letter-spacing: 20px;
    background: var(--secondary-navy);
    padding: 0 20px;
}

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

.footer-section h3 {
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--accent-blue);
    color: var(--light-gray);
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-navy);
        padding: 20px;
        gap: 10px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .event-item {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
        letter-spacing: 2px;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }
    
    .hero-content > div a.btn {
        font-size: 0.9rem;
        padding: 12px 24px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

/* ========================================
   Utility Classes
======================================== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #2d5016;
    border: 1px solid #4a8028;
    color: #b5f0a0;
}

.alert-error {
    background-color: #5c1a1a;
    border: 1px solid #8c2828;
    color: #ffb3b3;
}

/* ========================================
   Floating Booking Button
======================================== */
.floating-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--gold-accent), var(--copper-accent));
    color: var(--secondary-navy);
    padding: 18px 28px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.5);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    animation: pulse 2s infinite;
}

.floating-book-btn i {
    font-size: 1.3rem;
}

.floating-book-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(212, 165, 116, 0.7);
    color: var(--secondary-navy);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(212, 165, 116, 0.5);
    }
    50% {
        box-shadow: 0 8px 40px rgba(212, 165, 116, 0.8);
    }
}

/* ========================================
   Scroll to Top Button
======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
    color: var(--gold-accent);
    border: 2px solid var(--gold-accent);
    border-radius: 50%;
    cursor: pointer;
    z-index: 998;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--gold-accent), var(--copper-accent));
    color: var(--secondary-navy);
    border-color: var(--copper-accent);
}

.scroll-to-top.show {
    display: flex;
}


/* ========================================
   Loading Animation
======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    animation: fadeIn 0.8s ease-out;
}

/* ========================================
   Enhanced Hover Effects
======================================== */
.menu-item,
.event-item,
.gallery-item {
    position: relative;
    overflow: hidden;
}

.menu-item::after,
.event-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.2), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.menu-item:hover::after,
.event-item:hover::after {
    width: 500px;
    height: 500px;
}

/* ========================================
   Responsive Floating Elements
======================================== */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll !important;
        background-position: center center;
        background-size: cover;
        min-height: 500px;
        padding: 40px 20px;
    }
    
    .hero-content {
        padding: 10px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .hero-content > div {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
    }
    
    .social-links {
        margin-bottom: 20px;
        gap: 15px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
    }
    
    .floating-book-btn {
        padding: 12px 16px;
        bottom: 20px;
        right: 20px;
        font-size: 0.85rem;
        border-radius: 50%;
        width: 60px;
        height: 60px;
    }
    
    .floating-book-btn span {
        display: none;
    }
    
    .floating-book-btn i {
        font-size: 1.5rem;
    }
    
    .scroll-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .wpcf7-submit {
        padding: 14px 30px;
        font-size: 0.85rem;
        width: 100%;
    }
    
    .wpcf7-form-control {
        font-size: 16px;
    }
    
    .wpcf7-textarea {
        min-height: 100px;
    }
}

