/* ===== CSS Variables ===== */
:root {
    --color-red: #D32F2F;
    --color-green: #2E7D32;
    --color-cheese: #F9C74F;
    --color-charcoal: #1B1B1B;
    --color-cream: #FFF6E5;
    --color-white: #FFFFFF;
    --color-gray-light: #F5F5F5;
    --color-gray: #666666;

    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.2);

    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-charcoal);
    background-color: var(--color-cream);
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

.section-title {
    font-size: 3rem;
    color: var(--color-red);
    margin-bottom: 1rem;
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
}

.section-subtitle.centered {
    text-align: center;
}

.lead {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-red);
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
}

.btn-primary:hover {
    background-color: #B71C1C;
    border-color: #B71C1C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-red);
    transform: translateY(-2px);
}

.btn-foodora {
    background-color: #D81B60;
    color: #FFFFFF;
    border-color: #D81B60;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-foodora:hover {
    background-color: #C2185B;
    border-color: #C2185B;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: #FFFFFF;
}

.btn-foodora-small {
    background-color: #D81B60;
    color: #FFFFFF;
    border-color: #D81B60;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-foodora-small:hover {
    background-color: #C2185B;
    border-color: #C2185B;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    color: #FFFFFF;
}

.btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    background-color: white;
    border-radius: 4px;
    padding: 2px;
}

.btn-icon-small {
    width: 20px;
    height: 20px;
    object-fit: contain;
    background-color: white;
    border-radius: 3px;
    padding: 2px;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

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

.logo img {
    height: 60px;
    width: auto;
}

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

.nav-link {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.nav-link.cta-button {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 10px 25px;
    border-radius: 50px;
}

.nav-link.cta-button:hover {
    background-color: #B71C1C;
    transform: translateY(-2px);
}

.nav-link.cta-button::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-charcoal);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/outSideRestaurant.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.8) 0%, rgba(211, 47, 47, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1.4s ease;
    flex-wrap: wrap;
}

.hero-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
}

.info-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.info-icon-img {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.5rem;
    display: block;
}

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

.info-card strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

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

/* ===== About Section ===== */
.about {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--color-gray);
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

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

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-red);
}

.feature p {
    font-size: 0.95rem;
    margin: 0;
}

/* ===== Menu Section ===== */
.menu {
    padding: 6rem 0;
    background-color: var(--color-cream);
}

.menu-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.menu-header-content .section-title {
    text-align: left;
}

.menu-header-content .section-subtitle {
    text-align: left;
    margin-bottom: 1.5rem;
}

.menu-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-gray);
    max-width: 500px;
}

.menu-header-image {
    position: relative;
}

.menu-header-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.menu-header-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-item {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.menu-item.featured {
    border: 2px solid var(--color-cheese);
    background: linear-gradient(135deg, #FFFBF0 0%, var(--color-white) 100%);
}

.badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.menu-item h3 {
    font-size: 1.5rem;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.menu-prices {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
}

.price {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.menu-description {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.menu-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-gray-light);
}

.size-guide {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-gray);
}

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

/* ===== Reviews Section ===== */
.reviews {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.review-card {
    background-color: var(--color-cream);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-cheese);
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 5px;
}

.star-icon {
    width: 24px;
    height: 24px;
    filter: invert(67%) sepia(81%) saturate(505%) hue-rotate(357deg) brightness(103%) contrast(95%);
}

.review-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-red);
}

.review-card p {
    color: var(--color-gray);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.review-source {
    font-weight: 600;
    color: var(--color-green);
    font-size: 0.9rem;
}

.ratings-summary {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--color-gray-light);
    border-radius: 15px;
}

.rating-item {
    text-align: center;
}

.rating-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-red);
    font-family: var(--font-heading);
}

.rating-platform {
    font-weight: 600;
    margin: 0.5rem 0;
    color: var(--color-charcoal);
}

.rating-rank,
.rating-count {
    font-size: 0.9rem;
    color: var(--color-gray);
}

/* ===== Contact Section ===== */
.contact {
    padding: 6rem 0;
    background-color: var(--color-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--color-red);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-icon-img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    filter: invert(21%) sepia(83%) saturate(3158%) hue-rotate(348deg) brightness(89%) contrast(94%);
}

.contact-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-charcoal);
}

.contact-item p {
    color: var(--color-gray);
    line-height: 1.6;
}

.contact-item a {
    color: var(--color-red);
    font-weight: 600;
    transition: var(--transition);
}

.contact-item a:hover {
    color: #B71C1C;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.social-link:hover {
    background-color: #B71C1C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.contact-map iframe {
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    padding: 3rem 0;
}

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

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.footer-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    justify-content: flex-end;
}

.footer-credits span {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-credit-link {
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.footer-credit-link:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

.footer-credit-logo {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

.footer-credit-logo-digify {
    height: 40px;
}

.footer-credit-logo-nsp {
    height: 60px;
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--color-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

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

    .hero-buttons {
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .menu-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .menu-header-content .section-title {
        text-align: center;
    }

    .menu-header-content .section-subtitle {
        text-align: center;
    }

    .menu-intro {
        text-align: center;
        max-width: 100%;
    }

    .menu-header-image img {
        height: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

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

    .footer-credits {
        justify-content: center;
    }

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

    .ratings-summary {
        gap: 2rem;
    }

    .menu-footer-buttons {
        flex-direction: column;
        align-items: center;
    }

    .menu-footer-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

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

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

    .info-card {
        min-width: 150px;
        padding: 1rem 1.5rem;
    }

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

    .hero {
        background-attachment: scroll;
    }

    .info-icon-img {
        width: 40px;
        height: 40px;
    }

    .feature-icon-img {
        width: 50px;
        height: 50px;
    }

    .contact-icon-img {
        width: 35px;
        height: 35px;
    }

    .footer-credit-logo-digify {
        height: 45px;
    }

    .footer-credit-logo-nsp {
        height: 30px;
    }

    .footer-credits {
        gap: 8px;
    }
}
