/* Global Styles */
:root {
    --primary: #e67e22;
    --primary-dark: #d35400;
    --secondary: #2c3e50;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --white: #ffffff;
    --black: #333333;
    --gray: #95a5a6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--black);
    line-height: 1.6;
}
.fonts-loaded body {
    font-family: 'Poppins', sans-serif;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.gf {
    background-color: #2ecc71;
    color: white;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: normal;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    color: var(--primary);
    font-size: 1.8rem;
}

.logo p {
    color: var(--secondary);
    font-size: 0.9rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 1;
}
.hero {
    background-size: cover;
    background-position: center;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    margin-top: 70px;
}

.hero-content {
    width: 100%;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Offers Section */
.offers {
    padding: 80px 0;
    background-color: var(--light);
    text-align: center;
}

.offers h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--secondary);
}

.offer-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.offer-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-10px);
}

.offer-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.offer-card p {
    margin-bottom: 15px;
    color: var(--gray);
}

.price {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Menu Preview */
.menu-preview {
    padding: 80px 0;
    text-align: center;
}

.menu-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--secondary);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 10px 20px;
    background-color: var(--light);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn:hover, .tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

.menu-items {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.menu-items.active {
    display: grid;
}
.menu-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden; /* Ensures images respect border radius */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.menu-item p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.price {
    font-weight: 700;
    color: var(--secondary);
}
/* Image Styles */
.offer-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offer-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.offer-content p {
    color: var(--gray);
    margin-bottom: 15px;
    flex-grow: 1;
}

.offer-card:hover {
    transform: translateY(-10px);
}

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.menu-item-image {
    height: 200px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item-content {
    padding: 20px;
}
.menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--primary);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: auto;
    display: block;
}
/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--light);
}

.about .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.about p {
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features {
    display: flex;
    margin-top: 30px;
    gap: 20px;
}

.feature {
    text-align: center;
    flex: 1;
}

.feature i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    text-align: center;
    background-color: var(--white);
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--secondary);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    padding: 30px;
    background-color: var(--light);
    border-radius: 10px;
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

.customer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.name {
    font-weight: 700;
    margin-bottom: 5px;
}

.stars {
    color: var(--primary);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light);
}

.contact .container {
    display: flex;
    gap: 50px;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--secondary);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 50px 0 0;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about .container, .contact .container {
        flex-direction: column;
    }
    
    .about-image, .about-content, .contact-info, .contact-form {
        width: 100%;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 0;
        padding: 10px 20px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .features {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 500px;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .menu-tabs {
        flex-direction: column;
    }
}

/*Full menu */

/* Full Menu Navigation Styles */
/* Full Menu Styles */
.full-menu {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.full-menu h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 30px;
}

.menu-category-title {
    color: var(--secondary);
    margin: 30px 0 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
    font-size: 1.3rem;
}

.menu-item.simple-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-footer-note {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Make the full menu tabs match the index style */
.full-menu .menu-tabs {
    justify-content: center;
    margin-bottom: 40px;
}

.full-menu .tab-btn {
    padding: 10px 20px;
    background-color: var(--light);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.full-menu .tab-btn:hover, 
.full-menu .tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .full-menu .menu-tabs {
        flex-wrap: wrap;
    }
    
    .full-menu .tab-btn {
        margin: 5px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Reservation Message Styles */
.reservation-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
    width: 90%;
    max-width: 500px;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.alert {
    padding: 30px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.alert-success {
    background-color: #2ecc71;
    color: white;
}

.alert-error {
    background-color: #e74c3c;
    color: white;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: opacity 0.2s ease;
}

.close-btn:hover {
    opacity: 0.8;
}