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

html {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --color-primary: #e2725b;
    --color-secondary: #dc2626;
    --color-orange-50: #fff7ed;
    --color-orange-100: #ffedd5;
    --color-orange-600: #ea580c;
    --color-red-50: #fef2f2;
    --color-red-100: #fee2e2;
    --color-red-600: #dc2626;
    --color-amber-50: #fffbeb;
    --color-yellow-400: #facc15;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-400: #9ca3af;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --color-white: #ffffff;
    --color-purple-600: #9333ea;
    --color-pink-600: #db2777;
    --color-green-600: #16a34a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-gray-800);
    background: linear-gradient(to bottom right, var(--color-amber-50), var(--color-orange-50), var(--color-red-50));
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

.hidden {
    display: none !important;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--color-orange-600), var(--color-red-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--color-gray-700);
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.font-bold {
    font-weight: 700;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 50;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--color-orange-600), var(--color-red-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--color-gray-700);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-orange-600);
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--color-gray-700);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav {
    background: var(--color-white);
    border-top: 1px solid var(--color-gray-200);
    animation: slideDown 0.3s ease-out forwards;
}

.mobile-nav-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-nav-link {
    color: var(--color-gray-700);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--color-orange-600);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(to right, var(--color-orange-600), var(--color-red-600));
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    color: var(--color-white);
    border: 2px solid var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-gray-900);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    max-width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    padding-top: 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-white);
    padding: 4rem 1rem;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.rating-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.star-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-yellow-400);
}

.rating-text {
    margin-left: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.chevron-icon {
    width: 2rem;
    height: 2rem;
    color: var(--color-white);
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

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

.bg-gradient {
    background: linear-gradient(to bottom right, var(--color-orange-50), var(--color-red-50));
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Decorations */
.bg-decoration {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 9999px;
    filter: blur(96px);
    opacity: 0.3;
    pointer-events: none;
}

.decoration-top-right {
    top: 0;
    right: 0;
    background: linear-gradient(to bottom right, var(--color-orange-200), var(--color-red-200));
    transform: translate(50%, -50%);
}

.decoration-bottom-left {
    bottom: 0;
    left: 0;
    background: linear-gradient(to top right, var(--color-orange-200), var(--color-yellow-200));
    transform: translate(-50%, 50%);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.about-text {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.quote-box {
    background: linear-gradient(to right, var(--color-orange-100), var(--color-red-100));
    border-radius: 1rem;
    padding: 1.5rem;
    border-left: 4px solid var(--color-orange-600);
}

.quote-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-800);
    font-style: italic;
}

.about-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out forwards;
}

.image-decoration {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--color-orange-400), var(--color-red-400));
    border-radius: 1.5rem;
    transform: rotate(6deg);
}

.rounded-image {
    position: relative;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    width: 100%;
}

/* Menu Section */
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.menu-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: none;
    background: var(--color-white);
    color: var(--color-gray-700);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
}

.menu-tab:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu-tab.active {
    background: linear-gradient(to right, var(--color-orange-600), var(--color-red-600));
    color: var(--color-white);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.menu-tab:hover {
    transform: scale(1.05);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
    width: 100%;
}

.menu-item {
    background: var(--color-white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.menu-item:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-0.5rem);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.75rem;
}

.menu-item-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-800);
}

.menu-item-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-orange-600);
    white-space: nowrap;
    margin-left: 1rem;
}

.menu-item-desc {
    color: var(--color-gray-600);
}

.new-badge {
    display: inline-block;
    background: linear-gradient(to right, var(--color-purple-600), var(--color-pink-600));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.announcement-badge {
    display: inline-block;
    background: linear-gradient(to right, var(--color-purple-600), var(--color-pink-600));
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 9999px;
}

.announcement-badge p {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

.feature-card {
    background: linear-gradient(to bottom right, var(--color-white), var(--color-orange-50));
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--color-orange-100);
}

.feature-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-0.5rem);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, var(--color-orange-600), var(--color-red-600));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-800);
    margin-bottom: 0.5rem;
}

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

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
    width: 100%;
}

.review-card {
    background: var(--color-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-0.5rem);
}

.review-stars {
    display: flex;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--color-gray-700);
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    color: var(--color-gray-800);
}

.review-source {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

/* Contacts Section */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
    width: 100%;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-title {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

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

.contact-phone {
    color: var(--color-orange-600);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
}

.contact-phone:hover {
    color: var(--color-orange-700);
}

.delivery-box {
    background: linear-gradient(to right, var(--color-orange-100), var(--color-red-100));
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.delivery-title {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.delivery-text {
    color: var(--color-gray-700);
    margin-bottom: 0.75rem;
}

.delivery-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray-700);
    margin-top: 0.5rem;
}

.map-container {
    background: var(--color-gray-200);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    height: 24rem;
}

/* Footer */
.footer {
    background: linear-gradient(to right, var(--color-gray-900), var(--color-gray-800));
    color: var(--color-white);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-info {
    text-align: center;
}

.footer-link {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-orange-400);
}

.footer-domain {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    margin-bottom: 0.25rem;
}

.footer-credits {
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

/* Icons */
.icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
}

.icon-sm {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
    color: var(--color-green-600);
}

.icon-lg {
    width: 2rem;
    height: 2rem;
    stroke-width: 2;
    color: var(--color-orange-600);
}

.menu-icon,
.close-icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2;
}

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

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

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

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-25%);
    }
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }

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

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

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

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

@media (min-width: 768px) {
    .desktop-only {
        display: flex !important;
    }

    .mobile-only {
        display: none !important;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contacts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-info {
        text-align: right;
    }
}

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

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

@media (max-width: 767px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}
