/* --- GLOBAL STYLES --- */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* --- HEADER & NAVIGATION --- */
.header {
    background: #f5bf2a;
    padding: 20px 60px;
    border-bottom: 3px solid #222;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-menu a {
    margin: 0 18px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    text-decoration: underline;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    width: 35px;
    height: 35px;
}

.profile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ddd;
    padding: 5px;
}

/* --- MOBILE MENU COMPONENTS (Hidden on Desktop) --- */
#menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
}

/* --- HERO SECTION --- */
.hero {
    height: 500px;
    background: url("../images/chicken-wings.jpeg") no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-btn {
    background: #f15a24;
    color: white;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #c9471c;
    transform: scale(1.05);
}

/* --- FEATURED SECTION --- */
.featured {
    background: #435933;
    padding: 80px 60px;
    text-align: center;
}

.featured-header h2 {
    color: white;
    font-size: 42px;
    margin-bottom: 5px;
}

.featured-header p {
    color: #f5bf2a;
    font-style: italic;
    font-size: 22px;
    margin-bottom: 50px;
}

/* --- CARD GRID & FOOD CARDS --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.food-card {
    background: #fdfaf0;
    border-radius: 24px;
    padding: 18px;
    text-align: left;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.food-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.inner-box {
    border-radius: 20px;
    height: 200px;
    overflow: hidden;
    margin-bottom: 15px;
}

.inner-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* Card Accent Colors */
.green { background-color: #4A7C59; }
.orange { background-color: #f15a24; }
.yellow { background-color: #f5bf2a; }
.dark { background-color: #2c3e50; }

.card-content .category {
    font-size: 12px;
    font-weight: 600;
    color: #6aa67c;
    margin-bottom: 4px;
    display: block;
}

.card-content h3 {
    margin: 0 0 15px 0;
    font-size: 22px;
    color: #2b2b2b;
    line-height: 1.2;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.add-btn {
    background: #FCC630;
    color: black;
    border: none;
    padding: 10px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
}

.add-btn:hover {
    background: #e5b121;
}

.meta {
    font-size: 12px;
    color: #777;
    display: flex;
    gap: 8px;
    align-items: center;
}

/* --- FIND US SECTION --- */
.find-us {
    padding: 80px 20px;
    background-color: #fdfaf0; 
    text-align: center;
}

.find-us h2 {
    font-size: 56px; 
    font-weight: 900;
    margin-bottom: 40px;
    color: #000;
    letter-spacing: -1px;
}

.find-us-container {
    max-width: 1100px;
    margin: 0 auto;
}

.map-wrapper {
    position: relative;
    line-height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    filter: grayscale(0.2);
}

.location-details p {
    margin: 8px 0;
    font-size: 22px;
    color: #000;
}

.location-details .address {
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto 15px auto;
}

/* --- FOOTER SECTION --- */
.footer {
    background: #f5bf2a;
    padding: 30px 60px;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 60px;
}

.footer-links {
    display: flex;
    gap: 100px;
}

.footer-links a {
    display: block;
    text-decoration: none;
    color: black;
    margin-bottom: 7px;
    font-weight: 500;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 250px;
    font-weight: 500;
}

.footer-social p {
    margin: 0 0 6px 0;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin: 10px 0;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.icon img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 50%;
}

.icon:hover {
    transform: scale(1.1);
}

.copyright {
    font-size: 10px;
    font-weight: 600;
    margin-top: 5px;
}