/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.nav-logo h1 {
    color: #d2691e;
    font-weight: 700;
    font-size: 2rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d2691e;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: -1;
}

.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.order-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cta-button, .order-button {
    background: #d2691e;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.order-button {
    background: #264653;
    padding: 15px 20px;
    font-size: 1rem;
}

.cta-button:hover {
    background: #b8621a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.order-button:hover {
    background: #1e4f5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #264653;
    margin-bottom: 1rem;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #d2691e;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Menu Section */
.menu {
    background: #f8f9fa;
}

.menu-categories {
    text-align: center;
    margin-bottom: 2rem;
}

.category-title {
    color: #264653;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #d2691e;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.menu-item.featured {
    border: 2px solid #d2691e;
    box-shadow: 0 15px 35px rgba(210, 105, 30, 0.15);
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.menu-item.featured:hover {
    box-shadow: 0 25px 45px rgba(210, 105, 30, 0.2);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d2691e;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(210, 105, 30, 0.3);
}

.menu-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-image img {
    transform: scale(1.05);
}

.menu-content {
    padding: 1.5rem;
}

.menu-content h3 {
    color: #264653;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
}

.menu-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.menu-price {
    color: #d2691e;
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    text-align: right;
}

.menu-note {
    background: #264653;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 3rem;
    text-align: center;
}

.menu-note p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Locations Section */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.location-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.location-content h3 {
    color: #264653;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.location-address {
    margin-bottom: 1rem;
    text-align: center;
}

.location-address p {
    margin: 0.25rem 0;
    color: #555;
    font-weight: 500;
}

.location-phone {
    text-align: center;
    margin-bottom: 1.5rem;
}

.location-phone a {
    color: #d2691e;
    text-decoration: none;
    font-weight: 600;
}

.location-phone a:hover {
    text-decoration: underline;
}

.location-order {
    text-align: center;
    margin-bottom: 1.5rem;
}

.location-order-btn {
    background: #d2691e;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.location-order-btn:hover {
    background: #b8621a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.location-hours {
    margin-bottom: 1.5rem;
}

.location-hours h4 {
    color: #264653;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    text-align: center;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.day-hours, .breakfast-hours {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.day-hours:last-child {
    border-bottom: none;
}

.breakfast-hours {
    justify-content: space-between;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    font-weight: 500;
}

.day {
    font-weight: 600;
    color: #264653;
}

.time {
    color: #d2691e;
    font-weight: 500;
}

.location-map {
    margin-top: 1.5rem;
}

.location-map iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    background: #264653;
    color: white;
}

.about h2 {
    color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    text-align: left;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.instagram-section {
    text-align: center;
}

.instagram-section h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.instagram-embed {
    display: flex;
    justify-content: center;
    align-items: center;
}

.instagram-media {
    margin: 0 auto !important;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Footer */
footer {
    background: #264653;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .logo-img {
        height: 40px;
    }

    .nav-logo h1 {
        font-size: 1.5rem;
    }

    .hero-logo {
        width: 80px;
    }

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

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .order-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }

    .cta-button, .order-button {
        width: 200px;
        padding: 12px 20px;
        font-size: 1rem;
    }

    section h2 {
        font-size: 2rem;
    }

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

    .menu-image {
        height: 200px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-text p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .nav-logo {
        gap: 0.5rem;
    }

    .nav-logo h1 {
        font-size: 1.3rem;
    }

    .logo-img {
        height: 35px;
    }

    .hero-logo {
        width: 70px;
    }

    section {
        padding: 60px 0;
    }

    .menu-content {
        padding: 1rem;
    }

    .menu-content h3 {
        font-size: 1.2rem;
    }

    .menu-price {
        font-size: 1.1rem;
    }
}
