/*
================================================
RestoMixi - CSS
================================================
TABLE OF CONTENTS
------------------------------------------------
1.0 GLOBAL STYLES
    - Variables
    - Reset & Base
    - Typography
    - Container
    - Buttons
    - Forms
    - Section Headers
2.0 HEADER
    - Main Header Styles
    - Navigation
    - Mobile Nav Toggle
3.0 FOOTER
    - Main Footer Styles
    - Bottom Bar
4.0 PAGES & SECTIONS
    - Hero Section
    - Concept Section
    - Weekly Feature Section
    - CTA Section
    - Page Header
    - Mission Section
    - Philosophy Section
    - Menu Section
    - Contact Section
    - Privacy Content
    - Cookie Banner
5.0 RESPONSIVE STYLES
    - 992px (Tablets)
    - 768px (Mobile Landscape)
    - 576px (Mobile Portrait)
------------------------------------------------
*/

/* 1.0 GLOBAL STYLES */
/* ================================================ */

:root {
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;

    --color-bg: #fdfaf6;
    --color-text: #5c5c5c;
    --color-dark: #2c3e50;
    --color-primary: #4db6ac; /* Muted Teal */
    --color-secondary: #c89f52; /* Gold/Ochre */
    --color-accent: #8d6e63; /* Warm Brown */
    --color-white: #ffffff;
    --color-border: #e0e0e0;

    --header-height: 80px;
}

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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    color: var(--color-dark);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

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

section {
    padding: 80px 0;
}

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

/* --- Buttons --- */
.rmx-btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-primary);
    font-weight: 500;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

.rmx-btn--primary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.rmx-btn--secondary:hover {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-white);
}

.rmx-btn--sm {
    padding: 8px 20px;
    font-size: 14px;
}

.rmx-btn--full {
    width: 100%;
}

/* --- Forms --- */
.rmx-form-group {
    margin-bottom: 20px;
}
.rmx-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-dark);
}
.rmx-form-group input,
.rmx-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.rmx-form-group input:focus,
.rmx-form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}
.rmx-form-group--half {
    display: flex;
    gap: 20px;
}
.rmx-form-group--half > div {
    width: 50%;
}

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

.rmx-section-title {
    margin-bottom: 10px;
}

.rmx-section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}


/* 2.0 HEADER */
/* ================================================ */
.rmx-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-white);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.rmx-header.scrolled {
    height: 70px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.rmx-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.rmx-header__logo {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark);
}
.rmx-header__logo:hover {
    color: var(--color-dark);
}

.rmx-header__nav ul {
    display: flex;
    gap: 30px;
}
.rmx-header__nav a {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}
.rmx-header__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}
.rmx-header__nav a:hover::after,
.rmx-header__nav a.active::after {
    width: 100%;
}
.rmx-header__nav a.active,
.rmx-header__nav a:hover {
    color: var(--color-dark);
}

.rmx-header__info {
    font-weight: 500;
    color: var(--color-dark);
}

.rmx-mobile-nav-toggle {
    display: none;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}
.rmx-mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-dark);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}
.rmx-mobile-nav-toggle span:nth-child(1) { top: 0; }
.rmx-mobile-nav-toggle span:nth-child(2) { top: 10px; }
.rmx-mobile-nav-toggle span:nth-child(3) { top: 20px; }


/* 3.0 FOOTER */
/* ================================================ */

.rmx-footer {
    background-color: var(--color-dark);
    color: rgba(255,255,255,0.7);
    padding-top: 60px;
}
.rmx-footer h4 {
    color: var(--color-white);
    margin-bottom: 20px;
}
.rmx-footer a {
    color: rgba(255,255,255,0.7);
}
.rmx-footer a:hover {
    color: var(--color-primary);
}

.rmx-footer__main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}
.rmx-footer__links ul li {
    margin-bottom: 10px;
}
.rmx-footer__contact p {
    margin-bottom: 10px;
}
.rmx-footer__bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
}

/* 4.0 PAGES & SECTIONS */
/* ================================================ */

/* --- Hero Section --- */
.rmx-hero {
    padding-top: var(--header-height);
    background-color: var(--color-bg);
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.rmx-hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}
.rmx-hero__title {
    margin-bottom: 20px;
}
.rmx-hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.rmx-hero__image-wrapper {
    position: relative;
    height: 500px;
}
.rmx-hero__image {
    width: 100%;
    height: 100%;
    background: url('../../middle-eastern-food-6615971_1280.jpg') no-repeat center center/cover;
    border-radius: 10px;
}

/* --- Concept Section --- */
.rmx-concept__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.rmx-concept-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}
.rmx-concept-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.rmx-concept-card__icon {
    margin-bottom: 20px;
    color: var(--color-primary);
}
.rmx-concept-card__title {
    margin-bottom: 15px;
}

/* --- Weekly Feature Section --- */
.rmx-weekly-feature {
    background-color: var(--color-white);
}
.rmx-weekly-feature__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.rmx-weekly-feature__image img {
    border-radius: 10px;
}
.rmx-weekly-feature__tag {
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}
.rmx-weekly-feature__title {
    margin-bottom: 20px;
}
.rmx-weekly-feature__text {
    margin-bottom: 30px;
}

/* --- CTA Section --- */
.rmx-cta {
    background-color: var(--color-accent);
    color: var(--color-white);
    text-align: center;
}
.rmx-cta__container {
    max-width: 800px;
}
.rmx-cta h2, .rmx-cta p {
    color: var(--color-white);
}
.rmx-cta__title {
    margin-bottom: 15px;
}
.rmx-cta__text {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}
.rmx-cta .rmx-btn--primary:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
}

/* --- Page Header --- */
.rmx-page-header {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 60px;
    text-align: center;
    background-color: var(--color-white);
}
.rmx-page-header h1 {
    margin-bottom: 10px;
}
.rmx-page-header--menu {
    position: relative;
    color: var(--color-white);
    padding: 120px 0;
}
.rmx-page-header--menu .rmx-container {
    position: relative;
    z-index: 2;
}
.rmx-page-header--menu h1, .rmx-page-header--menu p {
    color: var(--color-white);
}
.rmx-page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.rmx-page-header__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

/* --- Mission Section (About) --- */
.rmx-mission__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.rmx-mission__content p {
    margin-bottom: 20px;
}
.rmx-mission__image img {
    border-radius: 10px;
}

/* --- Philosophy Section (About) --- */
.rmx-philosophy {
    background-color: var(--color-white);
}
.rmx-philosophy__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.rmx-philosophy-item {
    text-align: center;
}
.rmx-philosophy-item__icon {
    color: var(--color-primary);
    margin-bottom: 20px;
}
.rmx-philosophy-item__title {
    margin-bottom: 10px;
}


/* --- Menu Section --- */
.rmx-menu-section {
    padding: 80px 0;
}
.rmx-menu-category {
    margin-bottom: 60px;
}
.rmx-menu-category__title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}
.rmx-menu-category__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-secondary);
}
.rmx-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px 30px;
}
.rmx-menu-item {
    position: relative;
}
.rmx-menu-item__name {
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.rmx-menu-item__price {
    position: absolute;
    top: 0;
    right: 0;
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.3rem;
}
.rmx-menu-item__description {
    padding-right: 80px; /* space for price */
}

/* --- Contact Section --- */
.rmx-contact-section__container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}
.rmx-contact-form-wrapper {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 10px;
}
.rmx-form-title, .rmx-info-title {
    margin-bottom: 30px;
}
.rmx-contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.rmx-contact-info-item__icon {
    color: var(--color-primary);
    flex-shrink: 0;
}
.rmx-map-wrapper {
    margin-top: 40px;
}


/* --- Privacy Content --- */
.rmx-privacy-content {
    padding: 60px 0;
}
.rmx-privacy-content .rmx-container {
    max-width: 800px;
}
.rmx-privacy-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}
.rmx-privacy-content p, .rmx-privacy-content ul {
    margin-bottom: 20px;
}
.rmx-privacy-content ul {
    list-style: disc;
    padding-left: 20px;
}


/* --- Cookie Banner --- */
.rmx-cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 20px;
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: bottom 0.5s ease-in-out;
}
.rmx-cookie-banner.show {
    bottom: 0;
}
.rmx-cookie-banner p {
    margin: 0;
}
.rmx-cookie-banner a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* 5.0 RESPONSIVE STYLES */
/* ================================================ */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.1rem; }
    
    .rmx-header__nav, .rmx-header__info {
        display: none;
    }
    .rmx-mobile-nav-toggle {
        display: block;
    }
    
    /* Mobile Navigation Styles */
    .rmx-header__nav.mobile-active {
        display: flex;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    }
    .rmx-header__nav.mobile-active ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 0;
    }
     .rmx-header__nav.mobile-active li {
        width: 100%;
    }
    .rmx-header__nav.mobile-active a {
        padding: 15px;
        display: block;
        width: 100%;
    }
    .rmx-header__nav.mobile-active a::after {
        display: none;
    }
    
    .rmx-hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .rmx-hero__image-wrapper {
        grid-row: 1;
        height: 350px;
    }

    .rmx-concept__grid, .rmx-philosophy__grid {
        grid-template-columns: 1fr;
    }
    
    .rmx-weekly-feature__container {
        grid-template-columns: 1fr;
    }

    .rmx-footer__main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .rmx-footer__about, .rmx-footer__links, .rmx-footer__contact {
        margin-bottom: 20px;
    }
    
    .rmx-mission__container, .rmx-contact-section__container {
        grid-template-columns: 1fr;
    }
    .rmx-mission__image {
        grid-row: 1;
    }
    
    .rmx-contact-form-wrapper {
        padding: 30px;
    }
    
    .rmx-cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    .rmx-menu-grid {
        grid-template-columns: 1fr;
    }
    .rmx-menu-item__description {
        padding-right: 70px;
    }
    .rmx-form-group--half {
        flex-direction: column;
        gap: 0;
    }
    .rmx-form-group--half > div {
        width: 100%;
    }
    .rmx-form-group--half > div:first-child {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
     h1 { font-size: 2.2rem; }
     h2 { font-size: 1.8rem; }
}
