/* Custom styles for the Hotel Šustr restaurant homepage */

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ff8c00; /* Dark orange color */
    --dark-grey: #222222; /* Very dark grey for nav and footer */
    --text-color: #333;
    --light-color: #fff;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main, section {
    flex: 1 0 auto;
}

/* Header Styles - Global */

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    height: 60px;
}

/* Remove any conflicting background colors */
nav {
    background-color: transparent;
}

nav a {
    color: white;
    text-decoration: none;
}

nav a:hover {
    background-color: transparent;
}

nav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-grey);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
    background: transparent;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
    background: transparent;
}

/* Navigation Styles */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
    border: none;
}

.logo img {
    height: 50px; /* Adjust this value based on your logo size */
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    background: none;
    box-shadow: none;
    border: none;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
}

.nav-links a i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

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

/* Active state indicator */
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--dark-grey); /* Text will turn dark/black on hover */
    background-color: var(--secondary-color); /* Background will turn dark orange */
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
}

.nav-links a i {
    margin-right: 8px;
    font-size: 1.1em;
}

.nav-links a:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.burger-menu {
    display: none;
    cursor: pointer;
    z-index: 100;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--light-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .burger-menu {
        display: block;
        cursor: pointer;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        background: var(--dark-grey);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: 0.3s ease-in-out;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .burger-menu .bar {
        width: 25px;
        height: 3px;
        background: white;
        margin: 5px;
        transition: 0.3s ease;
    }

    .burger-menu.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-links {
        position: fixed;
        top: 60px; /* Exactly match header height */
        right: -100%;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        gap: 0;
        flex-direction: column;
        background-color: var(--dark-grey);
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-links li {
        margin: 16px 0;
    }

    /* Mobile active state */
    .nav-links a.active {
        background-color: var(--secondary-color);
        color: var(--dark-grey);
    }

    .nav-links a.active::after {
        display: none;
    }
}

/* Hero Section Styles - UPDATED */
.hero-section {
    height: 100vh;
    background-image: url('../images/sustrmain.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    position: relative;
}

/* Fix background attachment for mobile devices */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        transform: translateZ(0) !important; /* Force hardware acceleration */
        will-change: transform !important;
        -webkit-transform: translateZ(0) !important; /* Safari compatibility */
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
    }
}

/* Permanent menu header styles */
.permanent-menu-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4) 70%, rgba(245, 245, 245, 0.8) 100%),
                url('../images/menu.jpg') center/cover;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: clamp(3rem, 10vh, 6rem) 0 clamp(4rem, 12vh, 8rem) 0;
    margin-top: 60px;
    position: relative;
    margin-bottom: -50px;
    z-index: 1;
}

.permanent-menu-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #f5f5f5);
    z-index: 0;
}

.permanent-menu-header .container {
    position: relative;
    z-index: 2;
}

.permanent-menu-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.permanent-menu-header p {
    font-size: clamp(1rem, 3vw, 1.4rem);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Mobile fix for permanent menu header */
@media (max-width: 768px) {
    .permanent-menu-header {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4) 70%, rgba(245, 245, 245, 0.8) 100%),
                    url('../images/menu.jpg') center/cover !important;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
        min-height: 250px !important;
        z-index: 5 !important;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* CTA Buttons Container - FIXED VERSION */
.cta-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Universal Button Styles - FIXED VERSION */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.5rem;
    background-color: transparent;
    color: var(--light-color);
    text-decoration: none;
    border: 3px solid var(--secondary-color);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    min-height: 60px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), #ff9500);
    color: #1a1a1a;
    border-color: #ff9500;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 30px rgba(255, 140, 0, 0.8),
        0 0 60px rgba(255, 140, 0, 0.4),
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 
        0 0 25px rgba(255, 140, 0, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: scale(1.15);
}

/* Specifické styly pro sociální tlačítka - FIXED VERSION */
.btn[href*="facebook"] {
    border-color: #1877f2 !important;
    background: rgba(24, 119, 242, 0.15) !important;
}

.btn[href*="facebook"]:hover {
    background: linear-gradient(135deg, #1877f2, #42a5f5) !important;
    border-color: #42a5f5 !important;
    color: white !important;
    box-shadow: 
        0 0 30px rgba(24, 119, 242, 0.8),
        0 0 60px rgba(24, 119, 242, 0.4),
        0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

.btn[href*="instagram"] {
    border-color: #e1306c !important;
    background: rgba(225, 48, 108, 0.15) !important;
}

.btn[href*="instagram"]:hover {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045) !important;
    border-color: #fd1d1d !important;
    color: white !important;
    box-shadow: 
        0 0 30px rgba(225, 48, 108, 0.8),
        0 0 60px rgba(225, 48, 108, 0.4),
        0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

/* Menu a kontakt tlačítka zůstávají oranžová - FIXED VERSION */
.btn[href*="menu"],
.btn[href*="contact"] {
    border-color: var(--secondary-color) !important;
    background: rgba(255, 140, 0, 0.15) !important;
}

.btn[href*="menu"]:hover,
.btn[href*="contact"]:hover {
    background: linear-gradient(135deg, var(--secondary-color), #ff9500) !important;
    border-color: #ff9500 !important;
    color: #1a1a1a !important;
    box-shadow: 
        0 0 30px rgba(255, 140, 0, 0.8),
        0 0 60px rgba(255, 140, 0, 0.4),
        0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

/* Responsive Design pro tlačítka - COMPLETE OVERRIDE */
@media (max-width: 1024px) {
    .cta-buttons {
        max-width: 600px !important;
        gap: 1rem !important;
    }
    
    .btn {
        padding: 0.9rem 1.3rem !important;
        font-size: 0.95rem !important;
        min-height: 55px !important;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.3rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
        line-height: 1.5 !important;
    }
    
    .cta-buttons {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
        gap: 1rem !important;
        max-width: 300px !important;
        padding: 0 0.5rem !important;
        margin: 0 auto !important;
    }
    
    .btn {
        width: 100% !important;
        max-width: 280px !important;
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
        border-radius: 40px !important;
        min-height: 50px !important;
        gap: 0.5rem !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-transform: none !important;
        letter-spacing: 0.2px !important;
        border-width: 2px !important;
    }
    
    .btn i {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem 0.8rem !important;
    }
    
    .hero-content h1 {
        font-size: 1.9rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.6rem !important;
    }
    
    .subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.8rem !important;
        padding: 0 0.5rem !important;
    }
    
    .cta-buttons {
        gap: 0.8rem !important;
        max-width: 280px !important;
        padding: 0 !important;
    }
    
    .btn {
        max-width: 260px !important;
        padding: 0.7rem 1rem !important;
        font-size: 0.85rem !important;
        letter-spacing: 0.2px !important;
        min-height: 48px !important;
        border-width: 2px !important;
        border-radius: 30px !important;
    }
    
    .btn i {
        font-size: 0.95rem !important;
    }
}

/* Landscape mode pro mobily - COMPLETE OVERRIDE */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-content {
        padding: 1rem !important;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.2rem !important;
    }
    
    .cta-buttons {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        max-width: 500px !important;
        flex-direction: unset !important;
    }
    
    .btn {
        width: 100% !important;
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem !important;
        min-height: 45px !important;
    }
}

/* Extra animace pro hover efekty - COMPLETE OVERRIDE */
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(255, 140, 0, 0.6),
            0 0 40px rgba(255, 140, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(255, 140, 0, 0.8),
            0 0 60px rgba(255, 140, 0, 0.4);
    }
}

@keyframes glow-pulse-facebook {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(24, 119, 242, 0.6),
            0 0 40px rgba(24, 119, 242, 0.3);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(24, 119, 242, 0.8),
            0 0 60px rgba(24, 119, 242, 0.4);
    }
}

@keyframes glow-pulse-instagram {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(225, 48, 108, 0.6),
            0 0 40px rgba(225, 48, 108, 0.3);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(225, 48, 108, 0.8),
            0 0 60px rgba(225, 48, 108, 0.4);
    }
}

.btn[href*="menu"]:hover,
.btn[href*="contact"]:hover {
    animation: glow-pulse 2s ease-in-out infinite !important;
}

.btn[href*="facebook"]:hover {
    animation: glow-pulse-facebook 2s ease-in-out infinite !important;
}

.btn[href*="instagram"]:hover {
    animation: glow-pulse-instagram 2s ease-in-out infinite !important;
}

/* Optimalizace pro touch zařízení - COMPLETE OVERRIDE */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 52px !important;
        -webkit-tap-highlight-color: transparent !important;
        border-width: 2px !important;
    }
    
    .btn:active {
        transform: scale(0.97) !important;
        transition: transform 0.15s ease !important;
    }
    
    .btn:hover {
        animation: none !important;
        transform: none !important;
    }
    
    .btn[href*="facebook"]:active {
        background: rgba(24, 119, 242, 0.8) !important;
        color: white !important;
    }
    
    .btn[href*="instagram"]:active {
        background: rgba(225, 48, 108, 0.8) !important;
        color: white !important;
    }
    
    .btn[href*="menu"]:active,
    .btn[href*="contact"]:active {
        background: rgba(255, 140, 0, 0.8) !important;
        color: #1a1a1a !important;
    }
}

/* Disable animace pro uživatele s preferencí reduced motion */
@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: background-color 0.2s ease, color 0.2s ease !important;
    }
    
    .btn:hover {
        animation: none !important;
        transform: none !important;
    }
    
    .btn::before {
        display: none !important;
    }
    
    .btn:active {
        transform: none !important;
    }
}

/* Footer Styles */
footer {
    flex-shrink: 0;
    background-color: var(--dark-grey);
    color: var(--light-color);
    padding: 2rem 0;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.footer-section {
    padding: 0 1rem;
}

.footer-section h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-section p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.contact-info-footer {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-footer li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.contact-info-footer i {
    margin-right: 10px;
    color: var(--secondary-color);
    min-width: 16px;
    margin-top: 4px;
}

.opening-hours {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.opening-hours li {
    margin-bottom: 0.3rem;
}

.opening-hours .day {
    font-weight: bold;
}

.copyright {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    grid-column: 1 / -1;
    color: #999;
    font-size: 0.9rem;
}

.admin-link {
    margin-left: 1rem;
    color: #666;
    transition: color 0.2s;
}

.admin-link:hover {
    color: #999;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info-footer li {
        justify-content: center;
    }
    
    .opening-hours {
        width: fit-content;
        margin: 0 auto;
    }
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--dark-grey);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: var(--light-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-grey);
}

.dropdown-content a.active {
    background-color: var(--primary-color);
    color: white;
}

/* Menu Section Additional Styles */
.menu-section {
    margin-bottom: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.menu-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.menu-section h2 i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

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

.menu-item-content {
    flex: 1;
}

.menu-item-content h3 {
    margin: 0;
    color: var(--text-color);
    font-size: 1.2rem;
}

.menu-item-content .description {
    margin: 0.5rem 0 0;
    color: #666;
    font-size: 0.9rem;
}

.menu-item-price {
    margin-left: 2rem;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
    white-space: nowrap;
}

.menu-item-price i {
    margin-right: 5px;
}

.no-menu {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-size: 1.2rem;
}

.no-menu i {
    margin-right: 10px;
    color: var(--secondary-color);
}

/* Styly pro sekci dnešního menu */
.todays-menu {
    padding: 3rem 0;
    background-color: #f8f8f8;
    position: relative;
}

.todays-menu .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.todays-menu h2 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    position: relative;
}

.todays-menu h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ff7700;
    margin: 0.5rem auto 0;
}

#today-date {
    font-size: 1.2rem;
    color: #ff7700;
    font-weight: normal;
    margin-left: 0.5rem;
}

.menu-preview-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.menu-preview-items {
    padding: 1.5rem;
}

.menu-preview-category {
    background-color: #f5f5f5;
    border-left: 3px solid #ff7700;
    padding: 10px;
    margin: 20px 0 15px 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    border-radius: 4px;
}

.menu-preview-item {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    margin-bottom: 0;
    align-items: flex-start;
    gap: 10px;
}

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

.menu-preview-item-portion {
    width: 60px;
    font-size: 14px;
    color: #666;
    padding: 4px 0;
    flex-shrink: 0;
}

.menu-preview-item-name {
    flex: 1;
    font-size: 16px;
    margin: 0;
    padding: 0;
    color: #333;
    font-weight: normal;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    min-width: 0;
}

.menu-preview-item-description {
    flex: 1;
    font-size: 14px;
    color: #666;
    margin-top: 4px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
}

.menu-preview-item-price {
    width: 70px;
    text-align: right;
    font-weight: bold;
    color: #ff7700;
    font-size: 16px;
    padding: 4px 0;
    flex-shrink: 0;
}

.order-section {
    background-color: #f9f9f9;
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid #eee;
}

.order-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.order-phone {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.order-phone a {
    color: #ff7700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

.order-phone a:hover {
    color: #333;
}

.view-all-menu {
    display: inline-block;
    background-color: #ff7700;
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s;
}

.view-all-menu:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.loading, .no-menu {
    text-align: center;
    padding: 2rem;
    color: #999;
    font-style: italic;
}

/* Mobilní responsivita pro dnešní menu */
@media (max-width: 768px) {
    .todays-menu {
        padding: 2rem 0;
    }
    
    .todays-menu h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .todays-menu .container {
        padding: 0 0.5rem;
    }
    
    .menu-preview-container {
        margin: 0 0.5rem;
        border-radius: 12px;
    }
    
    .menu-preview-items {
        padding: 1rem;
    }
    
    .menu-preview-category {
        font-size: 1.1rem;
        margin: 15px 0 10px 0;
        padding: 10px 12px;
        border-radius: 8px;
        text-align: center;
        background: linear-gradient(135deg, #ff7700, #ff9500);
        color: white;
        border-left: none;
        box-shadow: 0 2px 8px rgba(255, 119, 0, 0.3);
    }
    
    /* Mobilní kartový design pro položky menu */
    .menu-preview-item {
        background: #fafafa;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        padding: 15px;
        margin-bottom: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        display: block;
        gap: 0;
    }
    
    .menu-preview-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
        background: #f5f5f5;
        margin-left: 0;
        margin-right: 0;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .menu-preview-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    /* Mobilní layout pro položky */
    .menu-preview-item-portion {
        width: auto;
        background: #ff7700;
        color: white;
        padding: 4px 8px;
        border-radius: 12px;
        font-size: 11px;
        font-weight: 600;
        margin-bottom: 8px;
        display: inline-block;
        text-align: center;
        min-width: 40px;
    }
    
    .menu-preview-item-name {
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 8px;
        color: #333;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .menu-preview-item-description {
        width: 100%;
        font-size: 14px;
        color: #666;
        margin-bottom: 10px;
        line-height: 1.3;
        font-style: italic;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .menu-preview-item-price {
        width: 100%;
        text-align: right;
        font-size: 18px;
        font-weight: 700;
        color: #ff7700;
        background: rgba(255, 119, 0, 0.1);
        padding: 8px 12px;
        border-radius: 8px;
        margin-top: 8px;
    }
    
    .menu-preview-item-price::after {
        content: '';
        clear: both;
        display: table;
    }
    
    /* Mobilní sekce objednání */
    .order-section {
        padding: 1.5rem 1rem;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        border-top: 3px solid #ff7700;
        text-align: center;
    }
    
    .order-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        color: #333;
        font-weight: 700;
    }
    
    .order-phone {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .order-phone a {
        background: #ff7700;
        color: white;
        text-decoration: none;
        padding: 12px 20px;
        border-radius: 25px;
        font-weight: 700;
        display: inline-block;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(255, 119, 0, 0.3);
    }
    
    .order-phone a:hover {
        background: #e67e00;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 119, 0, 0.4);
    }
    
    .view-all-menu {
        padding: 12px 24px;
        font-size: 16px;
        border-radius: 25px;
        margin-top: 0.5rem;
    }
}

/* Extra malé telefony */
@media (max-width: 480px) {
    .todays-menu h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .menu-preview-items {
        padding: 0.8rem;
    }
    
    .menu-preview-item {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .menu-preview-item-name {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .menu-preview-item-description {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .menu-preview-item-price {
        font-size: 16px;
        padding: 6px 10px;
    }
    
    .menu-preview-category {
        font-size: 1rem;
        padding: 8px 10px;
    }
    
    .order-section {
        padding: 1rem 0.8rem;
    }
    
    .order-title {
        font-size: 1.2rem;
    }
    
    .order-phone {
        font-size: 1.1rem;
    }
    
    .order-phone a {
        padding: 10px 16px;
        font-size: 15px;
    }
}

/* Landscape mode na mobilech */
@media (max-width: 768px) and (orientation: landscape) {
    .todays-menu {
        padding: 1.5rem 0;
    }
    
    .menu-preview-item {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
    }
    
    .menu-preview-item-portion {
        order: 1;
        margin-bottom: 0;
    }
    
    .menu-preview-item-name {
        order: 2;
        flex: 1;
        margin-bottom: 0;
        font-size: 15px;
    }
    
    .menu-preview-item-description {
        order: 3;
        width: 100%;
        margin-bottom: 5px;
        font-size: 13px;
    }
    
    .menu-preview-item-price {
        order: 4;
        width: auto;
        margin-top: 0;
        padding: 4px 8px;
        font-size: 16px;
    }
}

/* Víkendové menu info - NOVÉ STYLY */
.weekend-menu-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #ff7700;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.weekend-icon {
    font-size: 3.5rem;
    color: #ff7700;
    margin-bottom: 1.5rem;
}

.weekend-menu-info h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.weekend-menu-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.weekend-menu-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-permanent-menu {
    background: linear-gradient(135deg, #ff7700, #ff9500);
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 119, 0, 0.3);
}

.btn-permanent-menu:hover {
    background: linear-gradient(135deg, #e67e00, #e68a00);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 119, 0, 0.4);
    color: white;
    text-decoration: none;
}

.btn-call {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-call:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    color: white;
    text-decoration: none;
}

/* Menu odkazy pro všední dny - NOVÉ */
.menu-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.view-permanent-menu {
    background: #6c757d;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.view-permanent-menu:hover {
    background: #5a6268;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.menu-links-error {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Mobilní responsivita pro víkendové menu - NOVÉ */
@media (max-width: 768px) {
    .weekend-menu-info {
        padding: 2rem 1.5rem;
        margin: 1rem;
        border-radius: 12px;
    }
    
    .weekend-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .weekend-menu-info h3 {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .weekend-menu-info p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .weekend-menu-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn-permanent-menu,
    .btn-call {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .menu-links {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .view-permanent-menu {
        width: 100%;
        max-width: 200px;
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .weekend-menu-info {
        padding: 1.5rem 1rem;
        margin: 0.5rem;
    }
    
    .weekend-menu-info h3 {
        font-size: 1.2rem;
    }
    
    .weekend-menu-info p {
        font-size: 0.9rem;
    }
    
    .btn-permanent-menu,
    .btn-call {
        font-size: 0.95rem;
        padding: 10px 16px;
    }
}

/* Animace pro víkendové zobrazení - NOVÉ */
.weekend-menu-info {
    animation: fadeInUp 0.6s ease-out;
}

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

.weekend-icon i {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.features {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.features h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff7700, #ff9500);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7700, #ff9500);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(255, 119, 0, 0.15);
}

.feature-item i {
    font-size: 3rem;
    color: #ff7700;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: block;
}

.feature-item:hover i {
    transform: scale(1.1);
    color: #ff9500;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-item:hover h3 {
    color: #ff7700;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    transition: color 0.3s ease;
}

.feature-item:hover p {
    color: #555;
}


@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .feature-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 3rem 0;
    }
    
    .features h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .feature-item {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }
    
    .feature-item i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 2.5rem 0;
    }
    
    .features h2 {
        font-size: 1.8rem;
        padding: 0 0.5rem;
        line-height: 1.3;
    }
    
    .features-grid {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
        border-radius: 10px;
    }
    
    .feature-item i {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}