/* Global Styles */
:root {
    --primary-color: #d23b38;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --background-color: #f5f5f5;
    --text-color: #333;
    --light-color: #fff;
    --border-color: #ddd;
    --footer-bg: #1a1a1a;
    --footer-text: #f5f5f5;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --border-radius: 5px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

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

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--secondary-color);
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 60px 0;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-align: center;
}

.btn:hover {
    background-color: #b03230;
    color: var(--light-color);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.btn-large {
    padding: 12px 24px;
    font-size: 1.1rem;
}

.btn-highlight {
    background-color: var(--accent-color);
}

.btn-highlight:hover {
    background-color: #d68910;
}

/* Header & Navigation */
header {
    background-color: var(--light-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    padding: 10px;
    font-weight: 600;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-color);
}

/* Date Time Display */
.date-time {
    background-color: var(--secondary-color);
    color: var(--light-color);
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
}

.date-time i {
    margin-right: 5px;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    text-align: center;
    padding: 120px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn {
    margin: 0 10px 10px 0;
}

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

.features .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature-box {
    flex: 1;
    min-width: 300px;
    margin: 15px;
    padding: 30px;
    text-align: center;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    margin-bottom: 15px;
}

/* Latest Posts Section */
.latest-posts {
    text-align: center;
    background-color: var(--background-color);
}

.latest-posts h2 {
    margin-bottom: 40px;
}

.posts-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.post-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    width: 350px;
    transition: var(--transition);
}

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

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card h3 {
    padding: 15px 15px 5px;
}

.post-card p {
    padding: 0 15px 15px;
}

.post-card .btn {
    margin: 0 15px 15px;
}

.view-all {
    margin-top: 20px;
}

/* Order Section */
.order-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/order-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    text-align: center;
    padding: 80px 0;
}

.order-section h2 {
    color: var(--light-color);
    margin-bottom: 20px;
}

.order-section p {
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo, .footer-links, .footer-contact, .footer-social {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
    color: var(--light-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after, .footer-contact h4::after, .footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--footer-text);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 10px;
}

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

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

.footer-social .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    transition: var(--transition);
}

.footer-social .social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

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

.legal-links {
    margin-bottom: 15px;
}

.legal-links a {
    color: var(--footer-text);
    margin: 0 10px;
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: var(--primary-color);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--light-color);
    padding: 15px 0;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 15px;
}

.cookie-buttons {
    margin-bottom: 10px;
}

.cookie-buttons .btn {
    margin: 0 5px 10px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Page Banner */
.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/page-banner.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    text-align: center;
    padding: 80px 0;
}

.page-banner h1 {
    color: var(--light-color);
    margin-bottom: 15px;
}

/* Blog Page Styles */
.blog-content {
    background-color: var(--light-color);
    padding: 50px 0;
}

.blog-post {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-image {
    flex: 1;
    min-width: 300px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    flex: 2;
    min-width: 300px;
    padding: 30px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    color: #777;
    font-size: 0.9rem;
}

.post-meta span {
    margin-right: 20px;
}

.post-meta i {
    margin-right: 5px;
}

/* Menu Page Styles */
.menu-content {
    background-color: var(--light-color);
    padding: 50px 0;
}

.menu-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    margin: 0 5px 10px;
    background-color: var(--light-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.menu-category {
    margin-bottom: 50px;
}

.menu-category h2 {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.menu-category h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    width: 350px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.item-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-details h3 {
    margin-bottom: 10px;
}

.description {
    flex-grow: 1;
    margin-bottom: 15px;
}

.price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.menu-extras {
    margin-top: 70px;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: var(--border-radius);
}

.menu-extras h2 {
    text-align: center;
    margin-bottom: 30px;
}

.extras-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.extra-item {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.extra-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.extra-item ul li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.order-cta {
    text-align: center;
    margin-top: 70px;
    padding: 50px 20px;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
}

.order-cta h2 {
    margin-bottom: 15px;
}

.order-cta p {
    margin-bottom: 25px;
}

.note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 20px;
}

/* About Page Styles */
.about-content {
    background-color: var(--light-color);
    padding: 50px 0;
}

.about-story {
    margin-bottom: 70px;
}

.about-story h2 {
    text-align: center;
    margin-bottom: 30px;
}

.story-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.our-values {
    margin-bottom: 70px;
}

.our-values h2 {
    text-align: center;
    margin-bottom: 30px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.value-card {
    width: calc(25% - 30px);
    min-width: 250px;
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.our-team {
    margin-bottom: 70px;
}

.our-team h2 {
    text-align: center;
    margin-bottom: 30px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.team-member {
    width: calc(20% - 30px);
    min-width: 220px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3, .team-member p {
    padding: 0 15px;
}

.team-member h3 {
    margin-top: 15px;
    margin-bottom: 5px;
}

.team-member p:last-child {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.our-process {
    margin-bottom: 70px;
}

.our-process h2 {
    text-align: center;
    margin-bottom: 30px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.step {
    width: calc(25% - 20px);
    min-width: 250px;
    margin-bottom: 30px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.locations {
    margin-bottom: 70px;
}

.locations h2 {
    text-align: center;
    margin-bottom: 30px;
}

.location-map {
    margin-bottom: 30px;
}

.location-map img {
    width: 100%;
    border-radius: var(--border-radius);
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.location-card {
    width: calc(25% - 20px);
    min-width: 250px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.testimonials {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 40px;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.testimonial-content {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    margin-bottom: 20px;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--light-color);
    transform: rotate(45deg);
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Contact Page Styles */
.contact-content {
    background-color: var(--light-color);
    padding: 50px 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 70px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 10px;
}

.social-contact {
    margin-top: 40px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form-container h2 {
    margin-bottom: 30px;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--light-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.map-section {
    margin-bottom: 70px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    margin-bottom: 30px;
}

.map-container img {
    width: 100%;
    border-radius: var(--border-radius);
}

.location-hours {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.hours, .delivery-info {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.hours h3, .delivery-info h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hours ul li {
    margin-bottom: 10px;
}

.faq-section {
    margin-bottom: 50px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    background-color: var(--light-color);
    margin: 10% auto;
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.modal h2 {
    margin-bottom: 20px;
}

.modal p {
    margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .container {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .feature-box, .post-card, .menu-item, .value-card, .team-member, .step, .location-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .blog-post {
        flex-direction: column;
    }

    .post-image, .post-content {
        width: 100%;
    }

    .feature-box, .post-card, .menu-item, .value-card, .team-member, .step, .location-card {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-logo, .footer-links, .footer-contact, .footer-social {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-links h4::after, .footer-contact h4::after, .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    section {
        padding: 40px 0;
    }

    .modal-content {
        width: 90%;
        padding: 20px;
    }
}
