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

:root {
    --primary: #E63946;
    --secondary: #F77F00;
    --accent: #FCBF49;
    --dark: #2B2D42;
    --light: #FFFFFF;
    --gray: #8D99AE;
    --bg: #F8F9FA;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--light);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.text-logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #E63946, #F77F00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    transition: transform 0.3s;
}

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

.nav-logo .logo-img {
    height: 70px;
    transition: transform 0.3s;
}



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

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-phone:hover {
    color: var(--primary);
}

.nav-toggle, .nav-close {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    background: #d62839;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--light);
}

.btn-secondary:hover {
    background: #e67300;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 127, 0, 0.3);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.9), rgba(247, 127, 0, 0.8));
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s infinite alternate;
}

@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--light);
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 1s 0.2s backwards;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 3px;
    position: relative;
    background: linear-gradient(45deg, #FFD700, #FFF, #FFD700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(255, 215, 0, 0.5)) drop-shadow(0 5px 20px rgba(0, 0, 0, 0.3));
    animation: goldShine 3s linear infinite, fadeInScale 1s ease-out;
}

.hero-title .letter {
    display: inline-block;
}

@keyframes goldShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}



.hero-subtitle {
    font-size: 32px;
    color: var(--light);
    margin-bottom: 10px;
    animation: fadeIn 1s ease-out 0.3s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-description {
    font-size: 20px;
    color: var(--light);
    margin-bottom: 30px;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    justify-content: center;
    animation: slideInUp 0.8s ease-out 0.6s backwards;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(230, 57, 70, 0.7), rgba(247, 127, 0, 0.9));
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 6s infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; top: 60%; animation-delay: 1s; }
.particle:nth-child(3) { left: 60%; top: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 80%; top: 70%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; top: 50%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-20px); opacity: 0.6; }
}

.hero-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(252, 191, 73, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(252, 191, 73, 0.5);
    border-radius: 50px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 25px;
    animation: fadeIn 0.8s ease-out;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    animation: scaleIn 0.6s ease-out 0.4s backwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
}

.hero-divider i {
    color: var(--accent);
    font-size: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-features {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    justify-content: center;
    animation: fadeIn 0.8s ease-out 0.7s backwards;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--light);
    font-weight: 600;
    transition: all 0.3s;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.hero-feature i {
    font-size: 18px;
    color: var(--accent);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

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

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

.hero-shape-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.hero-shape-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    fill: var(--bg);
    transform: scaleY(-1);
}

/* Features Section */
.features {
    background: var(--bg);
}

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

.feature-card {
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    animation: fadeInUp 0.6s backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--light);
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-text {
    color: var(--gray);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
}

/* Menu Highlights */
.carousel-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.menu-carousel {
    display: flex;
    gap: 30px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.menu-card {
    min-width: calc(25% - 22.5px);
    max-width: calc(25% - 22.5px);
    width: calc(25% - 22.5px);
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    flex-shrink: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.carousel-btn:hover {
    background: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

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

.menu-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 57, 70, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.menu-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid var(--light);
    border-radius: 50px;
    transition: all 0.3s;
}

.menu-link:hover {
    background: var(--light);
    color: var(--primary);
}

.menu-info {
    padding: 20px;
}

.menu-name {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark);
}

.menu-desc {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 12px;
}

.menu-price {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.section-cta {
    text-align: center;
}

/* Friday Special */
.friday-special {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
}

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

.special-image {
    border-radius: 20px;
    overflow: hidden;
    animation: fadeInLeft 1s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.special-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.special-text {
    animation: fadeInRight 1s;
}

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

.special-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.special-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.special-desc {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.special-price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.special-note {
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Reviews */
.reviews {
    background: var(--bg);
}

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

.review-card {
    background: var(--light);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s;
    animation: fadeInUp 0.6s backwards;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.review-stars {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 15px;
}

.review-text {
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 20px;
}

.author-name {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 2px;
}

.author-date {
    font-size: 12px;
    color: var(--gray);
}

/* Location */
.location-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg);
    border-radius: 20px;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 24px;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark);
}

.info-text p {
    color: var(--gray);
    line-height: 1.6;
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--light);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
    color: var(--gray);
}

.footer-list a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: var(--primary);
}

.footer-list i {
    margin-right: 8px;
    color: var(--primary);
}

.footer-list .highlight {
    color: var(--accent);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray);
    margin-bottom: 5px;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

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

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--light);
        padding: 80px 40px;
        transition: right 0.3s;
        box-shadow: -2px 0 20px rgba(0,0,0,0.1);
    }

    .nav-menu.show {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 30px;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-phone span {
        display: none;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-text {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-badge-premium {
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .menu-card {
        min-width: calc(50% - 15px);
        max-width: calc(50% - 15px);
        width: calc(50% - 15px);
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }

    .special-content {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 1px;
    }
    
    .word-snack,
    .word-mimoza {
        display: block;
    }
    
    .hero-title .space {
        display: none;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 12px;
    }
    
    .text-logo {
        font-size: 18px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .special-title {
        font-size: 32px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .menu-card {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }
}
