:root {
    --orange: #FF6B35;
    --orange-light: #FFF3EE;
    --orange-dark: #E05D2E;
    --dark: #2D2D2D;
    --light: #F8F9FA;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    padding-top: 80px;
}

h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Text Colors */
.text-orange {
    color: var(--orange) !important;
}

/* Background Colors */
.bg-orange {
    background-color: var(--orange) !important;
}

.bg-light-orange {
    background-color: var(--orange-light) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

/* Button Styles */
.btn-orange {
    background-color: var(--orange);
    color: white;
    border-color: var(--orange);
}

.btn-orange:hover {
    background-color: var(--orange-dark);
    border-color: var(--orange-dark);
    color: white;
}

.btn-outline-orange {
    color: var(--orange);
    border-color: var(--orange);
}

.btn-outline-orange:hover {
    background-color: var(--orange);
    color: white;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-img {
    max-height: 500px;
    object-fit: contain;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Features */
.feature-card {
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Menu Section */
.section-header {
    position: relative;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--orange);
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--orange);
    margin-top: 15px;
}

.menu-item {
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 10px !important;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.menu-item img {
    transition: transform 0.5s ease;
    height: 200px;
    object-fit: cover;
}

.menu-item:hover img {
    transform: scale(1.05);
}

.nav-pills .nav-link.active {
    background-color: var(--orange);
}

/* Special Offer */
.countdown {
    display: flex;
    gap: 15px;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 5px;
    min-width: 60px;
}

.countdown-label {
    font-size: 0.8rem;
    opacity: 0.8;
    display: block;
    margin-top: 5px;
}

/* About Section */
.about-images {
    height: 400px;
}

.about-images .main-img {
    width: 80%;
    height: 80%;
    object-fit: cover;
}

.about-images .secondary-img {
    width: 60%;
    height: 60%;
    object-fit: cover;
    bottom: 0;
    right: 0;
    border: 5px solid white;
}

/* Testimonials */
.testimonial-item {
    padding: 0 15px;
}

.testimonial-text {
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.testimonial-text:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 50px;
    color: var(--orange);
    opacity: 0.2;
    font-family: serif;
}

/* FAQ */
.accordion-button:not(.collapsed) {
    background-color: var(--orange-light);
    color: var(--orange);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Floating Cart Button */
.floating-cart-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.floating-cart-btn .btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cart-btn .badge {
    position: absolute;
    top: -5px;
    right: -5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-img {
        max-height: 300px;
        margin-bottom: 30px;
    }
    
    .about-images {
        height: auto;
        margin-bottom: 30px;
    }
    
    .about-images .main-img,
    .about-images .secondary-img {
        position: static;
        width: 100%;
        height: auto;
    }
}

/* Menu Page Specific Styles */
.menu-hero {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), url('../images/menu-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    margin-top: -80px;
    padding-top: 180px !important;
}

.menu-navigation {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1020;
}

.menu-navigation .nav-pills .nav-link {
    padding: 10px 20px;
    font-weight: 500;
    color: var(--dark);
    border-radius: 50px;
    margin: 0 5px;
}

.menu-navigation .nav-pills .nav-link.active {
    background-color: var(--orange);
    color: white;
}

.menu-item {
    transition: all 0.3s ease;
    border-radius: 10px !important;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.menu-item .card-body {
    padding: 1.25rem;
}

.menu-item .card-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.menu-item .card-text {
    font-size: 0.9rem;
}

/* Responsive Adjustments for Menu Page */
@media (max-width: 768px) {
    .menu-hero {
        padding-top: 120px !important;
        text-align: center;
    }
    
    .menu-hero .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .menu-hero .d-flex {
        flex-direction: column;
    }
    
    .menu-navigation .nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .menu-navigation .nav-item {
        flex: 0 0 auto;
    }
    
    .menu-item .col-md-4 {
        height: 150px;
    }
    
    .menu-item .col-md-4 img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), url('../images/about-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    margin-top: -80px;
    padding-top: 180px !important;
}

.about-images .main-img {
    width: 80%;
    height: 400px;
    object-fit: cover;
}

.about-images .secondary-img {
    width: 60%;
    height: 250px;
    object-fit: cover;
    bottom: 0;
    right: 0;
    border: 5px solid white;
}

.value-card {
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-img-wrapper {
    width: 150px;
    height: 150px;
    border: 3px solid var(--orange-light);
    border-radius: 50%;
    padding: 5px;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.social-links a {
    color: var(--dark);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--orange);
}

/* Testimonials Page Styles */
.testimonials-hero {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), url('../images/testimonials-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    margin-top: -80px;
    padding-top: 180px !important;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card.featured {
    background: var(--orange-light);
    border-left: 4px solid var(--orange);
}

.rating-input {
    direction: rtl;
    unicode-bidi: bidi-override;
}

.rating-input input {
    display: none;
}

.rating-input label {
    color: #ddd;
    font-size: 1.5rem;
    padding: 0 3px;
    cursor: pointer;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: var(--orange);
}

/* FAQ Page Styles */
.faq-hero {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), url('../images/faq-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    margin-top: -80px;
    padding-top: 180px !important;
}

.faq-sidebar .list-group-item {
    border: none;
    padding: 12px 15px;
    font-weight: 500;
}

.faq-sidebar .list-group-item.active {
    background-color: var(--orange);
    border-color: var(--orange);
}

.faq-sidebar .list-group-item:not(.active):hover {
    background-color: var(--orange-light);
}

.faq-section h2 {
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-hero,
    .testimonials-hero,
    .faq-hero {
        padding-top: 120px !important;
        text-align: center;
    }
    
    .about-images .main-img,
    .about-images .secondary-img {
        position: static;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    
    .team-card {
        margin-bottom: 30px;
    }
    
    .testimonial-card.featured {
        margin-bottom: 30px;
    }
    
    .faq-sidebar {
        display: none;
    }
}

/* Login Page Styles */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.login-section .card {
    border-radius: 15px;
    overflow: hidden;
}

.login-section .input-group-text {
    background-color: white;
    border-right: none;
}

.login-section .form-control {
    border-left: none;
    padding: 12px 15px;
}

.login-section .form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.login-section .toggle-password {
    border-left: none;
    background-color: white;
}

.login-section .toggle-password:focus {
    box-shadow: none;
}

.login-section .btn-orange {
    padding: 12px;
}

/* Security Alert */
.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
    font-size: 0.9rem;
}