:root {
    --primary-color: #D2691E;      /* Saddle Brown - burger color */
    --secondary-color: #2F4F4F;    /* Dark Slate Gray - sophisticated dark */
    --accent-color: #FF6347;       /* Tomato Red - fresh ingredient pop */
    --background-color: #FFF8DC;   /* Cornsilk - warm, creamy background */
    --text-color: #333333;
    --text-on-primary: #ffffff;
    --text-on-secondary: #ffffff;
    --divider-color: #ffffff;
    --card-border: #8B4513;        /* Saddle Brown darker */
    --success-color: #228B22;      /* Forest Green */
    --error-color: #DC143C;        /* Crimson */
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', 'Segoe UI', sans-serif;
}

body {
    font-family: 'Quicksand', 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
}

/* Header styles */
.header {
    height: 80px;
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container {
    width: 100%;
    padding: 0 20px;
    height: 100%;
}

/* Logo styles */
.logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo {
    height: 60px;
    max-height: 60px;
    object-fit: contain;
}

.halal-logo {
    height: 70px;
    max-height: 70px;
    margin-left: 8px;
    object-fit: contain;
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.menu-items {
    display: flex;
    align-items: center;
    height: 100%;
}

.menu-item-header {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 14px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-on-secondary);
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.menu-item-header:hover {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
}

.divider {
    height: 30px;
    width: 1px;
    background-color: white;
    opacity: 0.3;
}

/* Cart section */
.cart-container {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    min-width: 94px;
    transition: background-color 0.3s;
    text-decoration: none;
    color: inherit;
}

.cart-container:hover {
    background-color: var(--primary-color);
}

.cart-icon-container {
    position: relative;
}

.cart-icon {
    width: 24px;
    height: 24px;
    color: var(--text-on-secondary);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 18px;
    height: 18px;
    background-color: var(--accent-color);
    color: var(--text-on-primary);
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

.cart-text {
    margin-left: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-on-secondary);
    text-transform: uppercase;
}

/* Profile section */
.profile-container {
    display: flex;
    align-items: center;
    padding: 0 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    color: inherit;
}

.profile-container:hover {
    background-color: var(--primary-color);
}

.profile-icon {
    width: 24px;
    height: 24px;
    color: var(--text-on-secondary);
}

.profile-name {
    margin-left: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-on-secondary);
    text-transform: uppercase;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mobile Menu */
.burger-menu {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.burger-line {
    width: 25px;
    height: 3px;
    background-color: var(--text-on-secondary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-menu-item {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    color: var(--text-on-secondary);
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    text-decoration: none;
    transition: background-color 0.3s;
}

.mobile-menu-item:hover {
    background-color: var(--primary-color);
}

.horizontal-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 20px;
}

.mobile-cart-item {
    display: flex;
    align-items: center;
}

/* Carousel Styles */
.carousel-section {
    width: 100%;
    margin: 0 auto;
    margin-top: 80px;
    padding: 0;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 33%;
    overflow: hidden;
}

.carousel-slider {
    display: flex;
    transition: transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-item {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Burger Hero Section */
section {
    width: 100%;
    padding: 40px 20px;
}

.burger-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-wrapper {
    position: relative;
    min-height: 350px;
    display: flex;
    flex-wrap: wrap;
}

.hero-container {
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        #CD853F 25%,
        var(--secondary-color) 75%,
        #2F4F4F 100%);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 65%;
    position: absolute;
    left: 0;
    top: 16px;
    z-index: 2;
}

.hero-text {
    max-width: 90%;
}

.hero-text h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-on-primary);
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-image {
    border-radius: 15px;
    width: 40%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: cover;
}

/* Grid and Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    overflow: hidden;
    border: 2px solid var(--card-border);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1/1.1;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.2);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

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

.card-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    padding: 15px 20px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
}

.card-footer-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.card-footer-link:hover {
    transform: translateX(5px);
}

.card-title {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 18px;
}

.arrow {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
}

/* Process Section */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 50px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(47, 79, 79, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background: white;
}

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

.process-image-container {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, var(--background-color), #F5DEB3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.process-content {
    padding: 30px 25px;
    background-color: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-icon {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 32px;
}

.process-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.process-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    font-weight: 400;
}

/* CTA Button */
.cta-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(210, 105, 30, 0.3);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(210, 105, 30, 0.4);
}

/* Video Section */
.video-section {
    background: linear-gradient(135deg, var(--background-color), #F0F8FF);
    margin: 40px 0;
}

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

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Newsletter Subscription */
.subscription-container {
    width: 100%;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
}

.subscription-container h1 {
    color: white;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
}

.form-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    background-color: white;
    color: var(--text-color);
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: 'Quicksand', sans-serif;
}

.email-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 99, 71, 0.2);
}

.submit-btn {
    position: absolute;
    right: 8px;
    top: 8px;
    bottom: 8px;
    width: 48px;
    min-width: 48px;
    height: calc(100% - 16px);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scale(1.05);
}

.arrow-icon {
    width: 20px;
    height: 20px;
}

.message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    position: relative;
    z-index: 1;
}

.success {
    background-color: var(--success-color);
    color: white;
    border: 1px solid #1e6b1e;
}

.error {
    background-color: var(--error-color);
    color: white;
    border: 1px solid #a01020;
}

.loading {
    display: none;
    margin-top: 20px;
}

.spinner {
    width: 25px;
    height: 25px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

/* Footer Section */
.footer-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 0 25px;
    width: 100%;
}

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

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

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    text-align: center;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

/* Useful Links */
.useful-links ul {
    list-style: none;
    padding: 0;
}

.useful-links li {
    margin-bottom: 12px;
}

.useful-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    font-weight: 400;
}

.useful-links a:hover {
    color: var(--accent-color);
}

/* Contact Info */
.contact-info .address {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.phone-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.email-icon {
    font-size: 18px;
    color: var(--accent-color);
}

.email-address {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Opening Hours */
.hours-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.hours-item {
    display: flex;
    margin-bottom: 8px;
    width: 100%;
    justify-content: center;
}

.day-column {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.time-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
   
}

.time-slot {
    padding: 2px 0;
}

.day {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.time {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.time.closed {
    color: var(--accent-color);
}

.hours-loading {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}



/* Social Media */
.social-media {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.social-icon {
    transition: transform 0.3s ease, color 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.social-icon:hover {
    transform: translateY(-3px);
    color: var(--accent-color);
}

.social-icon i {
    width: 24px;
    height: 24px;
    font-size: 24px;
}

/* Footer divider */
.footer-divider {
    max-width: 500px;
    width: 80%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 20px auto;
}

/* Copyright */
.copyright {
    text-align: center;
}

.copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Loader Styles */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-content {
    text-align: center;
}

.spinner-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.page-loader .spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(210, 105, 30, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

.loader-text {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 500;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

body.loading {
    overflow: hidden;
}

/* Adaptive color class for icons */
.adaptive-color {
    filter: brightness(0) saturate(100%) invert(1);
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .menu-item-header {
        padding: 0 10px;
        font-size: 15px;
    }

    .profile-name {
        max-width: 80px;
    }

    .hero-text h1 {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    .desktop-menu {
        justify-content: flex-start;
    }

    .menu-items {
        display: none;
    }

    .divider {
        display: none;
    }

    .burger-menu {
        display: block;
        margin-left: auto;
        color: white;
    }

    .mobile-menu.active {
        display: block;
    }

    .open .burger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .open .burger-line:nth-child(2) {
        opacity: 0;
    }

    .open .burger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Hero section mobile */
    .hero-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .hero-container,
    .hero-image {
        position: static;
        width: 100%;
        margin: 0 auto;
    }

    .hero-image {
        order: 1;
        margin-bottom: 20px;
        height: 300px;
    }

    .hero-container {
        order: 2;
        margin-top: -40px;
        padding: 30px 25px;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-text {
        max-width: 100%;
    }

    /* Grid responsive */
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

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

    .footer-column {
        width: 100%;
        max-width: 400px;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }

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

    .card {
        aspect-ratio: 4/3;
    }

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

    .subscription-container h1 {
        font-size: 24px;
    }

    .social-media {
        gap: 15px;
    }

    .footer-divider {
        width: 90%;
    }
}

@media screen and (max-width: 480px) {
    .carousel-section {
        margin-top: 40px;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 30px 15px;
    }
}