/* Reset și variabile */
:root {
    --primary-color: #e31837;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-color: #333;
    --light-bg: #f9f9f9;
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Header și navigare */
header {
    background-color: var(--primary-color);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    width: 100%;
    padding: 1rem 0;
    position: relative;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    position: absolute;
    left: 5%;
    top: 25%;
    z-index: 10;
}

.logo-img {
    height: 140px;
    width: auto;
    transition: transform 0.3s ease;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3.5rem;
    margin: 0 auto;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: white;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
    background-color: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    text-align: center;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    padding: 0 20px;
    mix-blend-mode: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 0;
    font-weight: 500;
}

.cta-button {
    display: none;
}

/* Meniu Section */
.menu-section {
    position: relative;
    padding-bottom: 3rem;
    margin-top: -1px;
    overflow: visible;
    padding-top: 40px;
}

.menu-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 250px;
    background-color: #009246;
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.05) 0px,
            rgba(255, 255, 255, 0.05) 2px,
            transparent 2px,
            transparent 10px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.05) 0px,
            rgba(255, 255, 255, 0.05) 2px,
            transparent 2px,
            transparent 10px
        );
    z-index: 1;
}

.menu-section::after {
    content: '🍕';
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: rotate 20s linear infinite;
}

.menu-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.category-btn {
    padding: 0.8rem 3rem;
    font-size: 1.3rem;
    border: 2px solid white;
    background-color: transparent;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.category-btn.active {
    background-color: white;
    color: #009246;
    border-color: white;
}

.menu-grid {
    position: relative;
    z-index: 2;
    padding: 2rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 4rem;
}

.menu-grid.hidden {
    opacity: 0;
    visibility: hidden;
    display: none;
}

.menu-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.menu-item img:hover {
    opacity: 0.9;
}

.menu-item .content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-item .price {
    display: block;
    padding: 1rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: auto;
    text-align: left;
}

.menu-item h3 {
    padding: 1rem;
    color: var(--secondary-color);
}

.menu-item p {
    padding: 0 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Despre Section */
.about-section {
    position: relative;
    padding: 5rem 5%;
}

.about-section h2 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: 0;
    z-index: 1;
    background-color: #009246;
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.05) 0px,
            rgba(255, 255, 255, 0.05) 2px,
            transparent 2px,
            transparent 10px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.05) 0px,
            rgba(255, 255, 255, 0.05) 2px,
            transparent 2px,
            transparent 10px
        );
    color: white;
    padding: 2.5rem 0 2.5rem 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    margin-top: 0;
    margin-bottom: 3rem;
    text-align: center;
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 6.5rem;
}

.about-text, .about-image {
    width: 50%;
    margin-top: 0;
    padding-top: 0;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-image {
    align-self: flex-start;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    margin-top: 0;
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 5rem 5%;
    background-color: var(--light-bg);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.contact-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info, .contact-hours {
    flex: 1 1 0;
}

.contact-info {
    min-width: 270px;
}

.contact-hours {
    margin-top: 0;
    min-width: 320px;
}

.contact-hours h3 {
    margin-top: 0;
    margin-bottom: 1.1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.3rem;
    font-size: 1.08rem;
    min-height: 42px;
}

.contact-info i {
    margin-right: 0;
    color: var(--primary-color);
    font-size: 1.25rem;
    min-width: 22px;
    text-align: center;
}

.orar-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 350px;
    margin: 0;
    border-radius: 10px;
    background: #f5faff;
    box-shadow: 0 2px 8px rgba(0,200,225,0.08);
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0.5rem 1rem;
}

.orar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.orar-row:last-child {
    border-bottom: none;
}

.orar-zi, .orar-interval {
    padding: 0;
    font-size: 1.08rem;
    vertical-align: middle;
    white-space: normal;
    flex-shrink: 0;
}

.orar-zi {
    font-weight: 600;
    color: #00C8E1;
    width: 40%;
    text-align: left;
}

.orar-interval {
    color: #333;
    text-align: right;
    width: 60%;
}

.orar-row:last-child .orar-interval {
    color: #b0b0b0;
    font-style: italic;
}

@media (max-width: 600px) {
    .orar-list { font-size: 0.98rem; padding: 0.5rem; }
    .orar-row { padding: 0.2rem 0; }
    .orar-zi, .orar-interval { font-size: 0.98rem; white-space: normal; }
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 5% 1rem;
}

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

.footer-section:nth-child(2) {
    text-align: right;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-end;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-legal-links {
    margin-top: 0.7rem;
    text-align: center;
    font-size: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-legal-links a {
    color: #f3f3f3;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: #00C8E1;
    text-decoration: underline;
}

.footer-legal-icons {
    margin-top: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-text {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    margin-top: 0;
}

.footer-logo img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.footer-text h3 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
}

.footer-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.footer-legal-icons a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-legal-icons a:hover {
    opacity: 0.8;
}

.footer-legal-icons img {
    height: 50px;
    width: auto;
    vertical-align: middle;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        justify-content: space-between;
    }

    .logo { transform: translateY( 30px ); z-index: 10; }
    .logo-img { height: 170px; border-radius: 50%; border: 4px solid white; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: right 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 1000;
        margin: 0;
        gap: 1rem;
        visibility: hidden;
        opacity: 0;
    }

    .nav-links.active {
        right: 0 !important;
        z-index: 1040;
        visibility: visible;
        opacity: 1;
    }

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

    .nav-links a {
        font-size: 1.1rem;
        color: white;
    }

    .order-info {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: 20px;
        transform: none;
        z-index: 1000;
        width: auto;
        max-width: none;
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0;
    }

    .phone-number, .tazz-button {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1.2rem;
        border-radius: 12px;
        margin-bottom: 5px;
    }

    .separator {
        width: 100%;
        margin: 2px 0;
        font-size: 1.2rem;
    }

    .hero-content {
        gap: 5.5rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 0.3rem;
    }

    .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 0;
    }

    .scroll-arrows {
        margin-top: 3.5rem;
    }

    .arrow {
        font-size: 2.2rem;
    }

    .menu-section {
        padding-bottom: 320px;
        padding-top: 15px;
    }

    .menu-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        padding-top: 0;
    }

    .menu-categories {
        flex-direction: row;
        gap: 15px;
        padding: 0 15px;
        margin-bottom: 4rem;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        justify-content: center;
    }

    .menu-categories::-webkit-scrollbar {
        display: none;
    }

    .menu-categories {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .category-btn {
        width: auto;
        flex-shrink: 0;
        min-width: 120px;
        padding: 8px 20px;
        font-size: 1.1rem;
        border-radius: 12px;
        height: auto;
        min-height: 40px;
        white-space: nowrap;
    }

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

    .category-btn.active {
        background-color: white;
        color: #009246;
        border-color: white;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        padding: 1rem 15px;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .menu-item {
        margin-bottom: 1rem;
    }

    .menu-item img {
        height: 200px;
    }

    .about-content {
        flex-direction: column;
        padding: 6rem 15px 1rem;
        gap: 2rem;
    }

    .about-text, .about-image {
        width: 100%;
    }

    .about-section h2 {
        font-size: 2.2rem;
        padding: 1.5rem 0;
    }

    .contact-content {
        flex-direction: column;
        padding: 1rem;
    }

    .contact-info, .contact-hours {
        width: 100%;
        min-width: auto;
    }

    .orar-list {
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-section:nth-child(2) {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-legal-links a {
        display: block;
        margin: 0.5rem 0;
    }

    .modal-content {
        max-width: 95%;
    }

    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-consent-button {
        width: 100%;
        max-width: none;
    }

    .about-section,
    .contact-section {
        padding-bottom: 120px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        gap: 4.5rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .menu-item h3 {
        font-size: 1.1rem;
    }

    .menu-item p {
        font-size: 0.9rem;
    }

    .price-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .price-row .price {
        text-align: center;
    }

    .price-row .wolt-btn {
        width: 100%;
        text-align: center;
    }

    .contact-info p {
        font-size: 0.9rem;
    }

    .orar-zi, .orar-interval {
        font-size: 0.9rem;
        padding: 0.2rem 0.5rem;
    }

    .footer-legal-icons img {
        height: 50px;
    }

    .order-info {
        bottom: 15px;
        right: 15px;
        left: 15px;
        margin-bottom: 15px;
    }

    .phone-number, .tazz-button {
        padding: 12px 16px;
        font-size: 1.1rem;
    }

    .menu-section {
        padding-bottom: 300px;
        padding-top: 10px;
    }

    .menu-section h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
        padding-top: 0;
    }

    .menu-categories {
        flex-direction: row;
        gap: 10px;
        padding: 0 10px;
        margin-bottom: 3.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        justify-content: center;
    }

    .menu-categories::-webkit-scrollbar {
        display: none;
    }

    .menu-categories {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .category-btn {
        width: auto;
        flex-shrink: 0;
        min-width: 100px;
        padding: 6px 15px;
        font-size: 1rem;
        min-height: 35px;
        white-space: nowrap;
    }

    .menu-grid {
        padding: 1rem 10px;
        gap: 1.2rem;
    }

    .menu-item {
        margin-bottom: 0.8rem;
    }

    .about-content {
        flex-direction: column;
        padding: 5rem 15px 1rem;
        gap: 2rem;
    }

    .about-text, .about-image {
        width: 100%;
    }

    .about-section h2 {
        font-size: 2.2rem;
        padding: 1.5rem 0;
    }

    .contact-section {
        padding-bottom: 100px;
    }
}

@media (min-width: 1201px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .menu-grid .menu-item {
        width: auto;
    }
}

/* Modal pentru imagini */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    padding: 10px 0;
    height: 150px;
}

.modal-close {
    position: absolute;
    right: 35px;
    top: 15px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

.video-section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.35);
}

.content-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 15vh 0 100px;
    z-index: 2;
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    margin-top: 4rem;
}

.pizza-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    mix-blend-mode: overlay;
}

/* Eliminăm vechiul overlay */
.video-section::before {
    display: none;
}

.order-info {
    position: fixed;
    bottom: 30px;
    right: 30px;
    transform: none;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.phone-number, .tazz-button {
    width: 100%;
    justify-content: center;
    padding: 10px 25px;
    font-size: 1.2rem;
    border-radius: 25px;
    margin: 0;
}

.phone-number {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.phone-number:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background-color: white;
}

.phone-number i {
    color: var(--primary-color);
}

.tazz-button {
    background-color: #00C8E1;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    justify-content: center;
}

.tazz-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.tazz-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 200, 225, 0.3);
    background-color: #00a6ba;
}

.separator {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin: 8px 0;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.arrow {
    font-size: 2.5rem;
    animation: bounce 2s infinite;
    opacity: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 0.7;
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid white;
    border-radius: 4px;
}

.arrow-1 {
    color: var(--primary-color); /* Roșu */
    animation-delay: 0s;
}

.arrow-2 {
    color: #ffffff; /* Alb */
    animation-delay: 0.2s;
}

.arrow-3 {
    color: #009246; /* Verde */
    animation-delay: 0.4s;
}

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

@keyframes slideRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.wolt-btn {
    display: inline-block;
    margin: 0;
    padding: 7px 20px;
    background: #00C8E1;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,200,225,0.13);
    transition: background 0.2s, box-shadow 0.2s;
    vertical-align: middle;
    text-decoration: none;
}

.wolt-btn:hover {
    background: #00a6ba;
    box-shadow: 0 4px 16px rgba(0,200,225,0.18);
    text-decoration: none;
}

#modalCaption {
    margin: 18px auto 0 auto;
    width: 90%;
    max-width: 420px;
    min-height: 40px;
}

.modal-caption-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    margin-bottom: 8px;
}

.modal-price {
    font-size: 1.18rem;
    font-weight: 600;
    color: #222;
    margin-right: 0;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 1rem 1rem 1rem;
    margin-top: auto;
}

.price-row .price {
    padding: 0;
    margin: 0;
    line-height: 1.2;
}

.price-row .wolt-btn {
    padding: 6px 18px;
    font-size: 0.98rem;
    margin: 0;
    box-shadow: none;
}

.legal-section {
    background: #f8f8f8;
    padding: 3rem 0 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 2.5rem;
}

.legal-content h2 {
    font-size: 1.7rem;
    color: #009246;
    margin-bottom: 1.2rem;
    text-align: center;
}

.legal-content ul {
    margin: 1.2rem 0 1.2rem 1.5rem;
    padding: 0;
    color: #444;
}

.legal-content li {
    margin-bottom: 0.7rem;
    font-size: 1.08rem;
}

.legal-content p {
    color: #444;
    font-size: 1.08rem;
    margin-bottom: 1rem;
    text-align: left;
}

.cookie-consent-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem 0;
    z-index: 2000;
    text-align: center;
    font-size: 0.95rem;
    animation: slideInUp 0.5s ease-out;
}
@keyframes slideInUp {
    from { transform: translateY(100%); opacity: 0.8; }
    to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-popup.show {
    display: block;
}
.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 20px;
}
.cookie-consent-content p {
    margin: 0;
    padding: 0;
    color: white;
    line-height: 1.4;
}
.cookie-consent-content a {
    color: #00C8E1;
    text-decoration: underline;
}
.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.cookie-consent-button.accept {
    background: #00C8E1;
    color: white;
}
.cookie-consent-button.accept:hover {
    background: #00a6ba;
}
.cookie-consent-button.reject {
    background: white;
    color: #e31837;
    border: 2px solid #e31837;
}
.cookie-consent-button.reject:hover {
    background: #ffeaea;
    color: #b3001b;
    border-color: #b3001b;
}
.cookie-consent-button {
    background: #00C8E1;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    flex-shrink: 0;
}
.cookie-consent-button:hover {
    background: #00a6ba;
}
.cookie-close {
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 1rem;
    transition: color 0.2s;
}
.cookie-close:hover {
    color: #00C8E1;
}
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        gap: 1rem;
    }
    .cookie-consent-button {
        width: 100%;
        max-width: 200px;
    }
    .cookie-close {
        position: absolute;
        top: 10px;
        right: 10px;
        margin: 0;
    }
}

/* Mobile Navigation - Îmbunătățiri */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    nav {
        padding: 0.5rem 1rem;
        position: relative;
    }

    .logo {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }

    .logo-img {
        height: 130px;
        border-width: 3px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        padding: 100px 25px 30px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 25px rgba(0,0,0,0.2);
        z-index: 1000;
        margin: 0;
        gap: 1.5rem;
        visibility: hidden;
        opacity: 0;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        right: 0;
        visibility: visible;
        opacity: 1;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.3rem;
        color: white;
        padding: 0.8rem 0;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
    }

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

    /* Hero Section - Îmbunătățiri Mobile */
    .hero-content {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
    }

    .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    /* Order Info - Îmbunătățiri Mobile */
    .order-info {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: 20px;
        gap: 0;
    }

    .phone-number, .tazz-button {
        padding: 14px 20px;
        font-size: 1.2rem;
        border-radius: 12px;
        margin: 0;
    }

    .separator {
        margin: 8px 0;
        font-size: 1.2rem;
    }

    /* Menu Section - Îmbunătățiri Mobile */
    .menu-categories {
        flex-direction: column;
        gap: 12px;
        padding: 0 15px;
        margin-bottom: 4rem;
        overflow-y: visible;
        max-height: none;
    }

    .category-btn {
        width: 100%;
        min-width: auto;
        padding: 12px 20px;
        font-size: 1.2rem;
        border-radius: 12px;
        height: auto;
        min-height: 50px;
    }

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

    .category-btn.active {
        background-color: white;
        color: #009246;
        border-color: white;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        padding: 1rem 15px;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .menu-item {
        margin-bottom: 1rem;
    }

    .menu-item img {
        height: 200px;
    }

    .menu-item h3 {
        font-size: 1.3rem;
        padding: 1rem 1.2rem;
    }

    .menu-item p {
        font-size: 1rem;
        padding: 0 1.2rem;
        line-height: 1.5;
    }

    .price-row {
        padding: 0.8rem 1.2rem 1.2rem;
        gap: 12px;
    }

    .price-row .price {
        font-size: 1.3rem;
    }

    .wolt-btn {
        padding: 10px 20px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    /* About Section - Îmbunătățiri Mobile */
    .about-content {
        flex-direction: column;
        padding: 1rem 15px;
        gap: 2rem;
    }

    .about-text, .about-image {
        width: 100%;
    }

    .about-section h2 {
        font-size: 2.2rem;
        padding: 1.5rem 0;
    }

    /* Contact Section - Îmbunătățiri Mobile */
    .contact-content {
        flex-direction: column;
        padding: 1rem 15px;
        gap: 2.5rem;
    }

    .contact-info, .contact-hours {
        width: 100%;
        min-width: auto;
    }

    .contact-info p {
        font-size: 1.1rem;
        min-height: 45px;
    }

    .orar-list {
        max-width: 100%;
        padding: 1rem;
        border-radius: 12px;
    }

    .orar-row {
        padding: 0.5rem 0;
    }

    .orar-zi, .orar-interval {
        font-size: 1.1rem;
    }

    /* Footer - Îmbunătățiri Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }

    .footer-section:nth-child(2) {
        text-align: center;
    }

    .social-links {
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-logo img {
        height: 90px;
        width: 90px;
    }

    .footer-text h3 {
        font-size: 1.4rem;
    }

    .footer-text p {
        font-size: 1.1rem;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-legal-links a {
        font-size: 1.1rem;
    }

    .footer-legal-icons {
        gap: 1.5rem;
    }

    .footer-legal-icons img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        gap: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 70px;
    }

    .menu-item h3 {
        font-size: 1.2rem;
    }

    .menu-item p {
        font-size: 0.95rem;
    }

    .price-row .price {
        font-size: 1.2rem;
    }

    .wolt-btn {
        font-size: 1rem;
        padding: 8px 16px;
    }

    .contact-info p {
        font-size: 1rem;
    }

    .orar-zi, .orar-interval {
        font-size: 1rem;
    }

    .footer-logo img {
        height: 80px;
        width: 80px;
    }

    .footer-text h3 {
        font-size: 1.3rem;
    }

    .footer-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 2rem 0;
    }

    .about-section h2 {
        font-size: 2.2rem;
        padding: 1.5rem 0;
        position: static;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .about-content {
        flex-direction: column;
        padding: 0 15px 1rem;
        margin-top: 5rem;
        gap: 2rem;
    }

    .about-text, .about-image {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 1.5rem 0;
    }

    .about-section h2 {
        font-size: 2rem;
        padding: 1rem 0;
        position: static;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0.8rem;
    }

    .about-content {
        flex-direction: column;
        padding: 0 15px 1rem;
        margin-top: 4rem;
        gap: 2rem;
    }

    .about-text, .about-image {
        width: 100%;
    }
}