:root {
    --teal: #008080;
    --teal-light: #20b2aa;
    --teal-dark: #006666;
    --accent: #ff6b35;
    --light: #f5fdfd;
    --dark: #1a3c3c;
    --gray: #e0f2f1;
    --border: #b2dfdb;
}

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

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Montserrat", sans-serif;
    color: var(--dark);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1920")
            center/cover;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    font-size: 32px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.logo span {
    color: var(--teal-light);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

/* Navigation */
nav {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--teal);
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--teal);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

.btn {
    display: inline-block;
    background-color: var(--teal);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.4);
}

.btn:hover {
    background-color: var(--teal-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.5);
}

/* Menu Section */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
}

.section-title h2 {
    font-size: 40px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--teal);
    border-radius: 2px;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 15px auto 0;
}

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

.category-btn {
    background-color: white;
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--teal);
    color: white;
    border-color: var(--teal);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.menu-category {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-10px);
}

.category-header {
    background: linear-gradient(to right, var(--teal), var(--teal-light));
    color: white;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: 600;
}

.category-items {
    padding: 20px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
}

.menu-item:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 500;
}

.item-price {
    color: var(--teal);
    font-weight: 600;
}

/* Offers Section */
.offers-section {
    background-color: var(--gray);
    padding: 60px 0;
}

.combo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.combo-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.combo-card:hover {
    transform: translateY(-10px);
}

.combo-header {
    background: linear-gradient(to right, var(--teal), var(--teal-light));
    color: white;
    padding: 20px;
    text-align: center;
}

.combo-header h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.combo-body {
    padding: 25px;
}

.combo-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.combo-price {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 128, 128, 0.1);
    border-top: 2px solid var(--teal);
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
    margin-right: 10px;
}

.discounted-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--teal);
}

.discount-badge {
    background-color: var(--accent);
    color: white;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 16px;
    display: inline-block;
    margin-top: 10px;
}

/* Contact Section */
.contact-section {
    background-color: var(--dark);
    color: white;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info-card {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 40px;
    color: var(--teal-light);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
}

.contact-info-card p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
footer {
    background-color: #0d2c2c;
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto 30px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--teal-light);
    transform: translateY(-3px);
}

.copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
        padding: 0 15px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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