* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.home-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body {
    background: linear-gradient(135deg, #ffd6e7, #f3a6c7);
    min-height: 100vh;
    color: #333;
}

/* ============================= */
/* NAVBAR */
/* ============================= */

.navbar {
    width: 100%;
    padding: 18px 40px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #d81b60;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #d81b60;
}

/* ============================= */
/* HERO SECTION */
/* ============================= */

.hero {
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 70px;
    padding: 90px 60px;
    animation: fadeUp 1s ease forwards;
}

.hero-content {
    max-width: 520px;
    animation: slideLeft 1s ease forwards;
}

.hero h1 {
    font-size: 40px;
    color: #d81b60;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 22px;
}

.hero-image {
    animation: slideRight 1s ease forwards;
}

.hero-image img {
    width: 420px;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero p {
    color: #555;
    font-size: 18px;
}

/* ============================= */
/* FILTER SECTION */
/* ============================= */

.filter-section {
    text-align: center;
    margin: 30px 0;
}

select {
    padding: 10px 14px;
    margin: 8px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
}

/* ============================= */
/* SECTION HEADINGS */
/* ============================= */

.section-title {
    text-align: center;
    font-size: 30px;
    color: #d81b60;
    margin: 40px 0 25px;
}

/* ============================= */
/* FOOD CARD GRID */
/* ============================= */

.food-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px 40px 60px;
}

.food-card {
    width: 260px;
    background: white;
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.food-card:hover {
    transform: translateY(-8px);
}

.food-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 12px;
}

.food-card h3 {
    margin-top: 12px;
    font-size: 18px;
}

.price {
    color: #d81b60;
    font-weight: bold;
    margin: 8px 0;
}

/* ============================= */
/* BUTTONS */
/* ============================= */

button {
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    background: linear-gradient(45deg, #ff6fa5, #d81b60);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
}

/* ============================= */
/* HALF PLATE HIGHLIGHT */
/* ============================= */

.highlight {
    text-align: center;
    margin: 50px 0 10px;
    font-size: 32px;
    color: #d81b60;
    font-weight: bold;
}

/* ============================= */
/* LOGIN PAGE */
/* ============================= */

/* LOGIN PAGE FIXED ALIGNMENT */

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f8cdda, #fcb6d0);
}

/* Center Wrapper */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card */
.login-card {
    background: #ffffff;
    padding: 45px 40px;
    width: 360px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-card h1 {
    color: #e91e63;
    margin-bottom: 8px;
}

.tagline {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

/* Labels */
label {
    display: block;
    text-align: left;
    margin-top: 15px;
    font-size: 14px;
    color: #444;
}

/* Inputs */
input {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s;
}

input:focus {
    border-color: #e91e63;
    box-shadow: 0 0 6px rgba(233, 30, 99, 0.3);
}

/* Button */
.login-btn {
    width: 100%;
    padding: 12px;
    margin-top: 25px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #ff4b8b, #e91e63);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.register-text {
    margin-top: 18px;
    font-size: 14px;
}

.register-text a {
    color: #e91e63;
    text-decoration: none;
    font-weight: bold;
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .food-container {
        padding: 20px;
    }

}
/* ============================= */
/* HERO SECTION SIDE BY SIDE */
/* ============================= */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 70px 80px;
}

.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-size: 42px;
    color: #d81b60;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.hero-image img {
    width: 420px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.explore-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 26px;
    background: linear-gradient(45deg, #ff6fa5, #d81b60);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.explore-btn:hover {
    transform: scale(1.05);
}

.why-cravehub {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 60px 40px;
  background: #ffc1d9; /* same pink theme */
}

.why-left h2 {
  font-size: 36px;
  font-weight: bold;
  color: #222;
}

.why-right p {
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 600;
}

.why-right span {
  display: block;
  font-size: 15px;
  font-weight: normal;
  color: #333;
  margin-left: 25px;
}

@media (max-width: 768px) {
  .why-cravehub {
    flex-direction: column;
    text-align: center;
  }

  .why-right span {
    margin-left: 0;
  }
}

/*
.why-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
}

.why-section h2 {
    color: #d81b60;
    margin-bottom: 15px;
}
*/
/* ============================= */
/* FOOTER */
/* ============================= */

.site-footer {
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    margin-top: 40px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    padding: 50px 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.footer-brand h3 {
    font-size: 24px;
    color: #d81b60;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    display: inline-flex;
}

.footer-links a {
    display: block;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #d81b60;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    font-size: 13px;
    color: #555;
    border-top: 1px solid rgba(0,0,0,0.08);
}

/* ============================= */
/* FOOTER RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

}

.profile-container {
    position: relative;
    display: inline-block;
    margin-left: 20px;
    cursor: pointer;
}

#profileBtn {
    font-weight: 500;
    color: #e91e63;
}

.profile-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 30px;
    background: white;
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 15px;
    z-index: 100;
}

.profile-dropdown p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
    font-weight: bold;
}

.profile-dropdown a {
    display: block;
    text-decoration: none;
    color: #444;
    margin: 8px 0;
    font-size: 14px;
}

.profile-dropdown a:hover {
    color: #e91e63;
}
/* PROFILE CIRCLE */
.profile-container {
    position: relative;
    display: inline-block;
    margin-left: 25px;
}

.profile-circle {
    width: 38px;
    height: 38px;
    background: linear-gradient(90deg, #ff4b8b, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.profile-circle:hover {
    transform: scale(1.1);
}

/* DROPDOWN */
.profile-dropdown {
    position: absolute;
    right: 0;
    top: 50px;
    background: white;
    min-width: 200px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
}

.profile-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.profile-dropdown p {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.profile-dropdown a {
    display: block;
    text-decoration: none;
    color: #444;
    margin: 8px 0;
    font-size: 14px;
}

.profile-dropdown a:hover {
    color: #e91e63;
}
/* PROFILE IMAGE */
.profile-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Upload label */
.upload-label {
    display: block;
    font-size: 13px;
    margin-bottom: 10px;
    cursor: pointer;
    color: #e91e63;
}

.upload-label input {
    display: none;
}

/* DASHBOARD */
.dashboard {
    padding: 80px 100px;
    animation: fadeUp 0.8s ease;
}

.dashboard h2 {
    color: #e91e63;
    margin-bottom: 30px;
}

.order-cards {
    display: flex;
    gap: 30px;
}

.order-card {
    background: white;
    padding: 25px;
    width: 260px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.order-card:hover {
    transform: translateY(-8px);
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* CART ICON */
.cart-container {
    margin-left: 20px;
}

.cart-icon {
    position: relative;
    font-size: 22px;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #e91e63;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
}

/* FOOD SECTION */
.food-section {
    padding: 60px 100px;
}

.food-grid {
    display: flex;
    gap: 30px;
}

.food-card {
    background: white;
    padding: 25px;
    width: 220px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.food-card button {
    margin-top: 10px;
    padding: 8px 15px;
    background: linear-gradient(90deg,#ff4b8b,#e91e63);
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

/* CART PANEL */
.cart-panel {
    position: fixed;
    right: -350px;
    top: 0;
    width: 320px;
    height: 100%;
    background: white;
    box-shadow: -10px 0 25px rgba(0,0,0,0.1);
    padding: 20px;
    transition: 0.4s;
    z-index: 1000;
}

.cart-panel.open {
    right: 0;
}

.cart-panel h3 {
    margin-bottom: 20px;
    color: #e91e63;
}

.cart-panel button {
    margin-top: 15px;
    padding: 8px 15px;
    background: #e91e63;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cart-container,
.profile-container {
    display: flex;
    align-items: center;
}
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #333;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e91e63;
}

/* ============================= */
/* HELP PAGE */
/* ============================= */

.help-section {
    padding: 80px 100px;
    text-align: center;
}

.help-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.help-card {
    background: white;
    width: 300px;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.help-card:hover {
    transform: translateY(-8px);
}

.help-card h3 {
    color: #e91e63;
    margin-bottom: 10px;
}
.filter-box {
    text-align: center;
    margin: 30px 0;
}

.filter-box input {
    padding: 10px;
    margin: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.filter-box button {
    padding: 10px 15px;
    background: #e91e63;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
/* ============================= */
/* FOOD GRID LAYOUT */
/* ============================= */

.food-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 40px 80px;
}

.food-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.food-card:hover {
    transform: translateY(-6px);
}

.food-card h3 {
    color: #e91e63;
    margin-bottom: 10px;
}

.food-card p {
    margin: 5px 0;
    color: #555;
}

