* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0f0f0f;
    color: #ffffff;
}


/* Header */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #1f1f1f;
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
}

.logo span {
    color: #ffb703;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    text-decoration: none;
    color: #cccccc;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #ffb703;
    transition: width 0.3s ease;
}

.nav a:hover {
    color: #ffffff;
}

.nav a:hover::after {
    width: 100%;
}

/* Button */
.btn {
    padding: 10px 20px;
    background: #ffb703;
    color: #000000 !important;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 183, 3, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
}

/* Toggle */
#nav-toggle {
    display: none;
}


/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top, #1a1a1a, #0f0f0f);
    padding: 60px 20px;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 40px;
}

/* Text */
.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text h1 span {
    background: linear-gradient(90deg, #ffb703, #ff8800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    margin: 20px 0 30px;
    color: #bdbdbd;
    max-width: 480px;
    line-height: 1.6;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary {
    padding: 14px 28px;
    background: #ffb703;
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 183, 3, 0.35);
}

.btn-secondary {
    padding: 14px 28px;
    border: 1px solid #ffb703;
    color: #ffb703;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ffb703;
    color: #000;
}

/* Badges */
.hero-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-badges span {
    background: #1c1c1c;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #e0e0e0;
    border: 1px solid #2a2a2a;
}

/* Image */
.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 800px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 25px 40px rgba(0,0,0,0.6));
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
}


/* Features Section */
.features {
    padding: 80px 20px;
    background: linear-gradient(180deg, #0f0f0f, #121212);
}

.features-container {
    max-width: 1200px;
    margin: auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 700;
}

.section-header h2 span {
    background: linear-gradient(90deg, #ffb703, #ff8800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    margin-top: 12px;
    color: #bdbdbd;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card */
.feature-card {
    background: #161616;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #1f1f1f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Icon */
.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

/* Text */
.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #c7c7c7;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Menu Section */
.menu {
    padding: 90px 20px;
    background: radial-gradient(circle at center, #141414, #0f0f0f);
}

.menu-container {
    max-width: 1200px;
    margin: auto;
}

/* Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 100fr);
    gap: 60px;
}

/* Card */
.menu-card {
    background: #161616;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #1f1f1f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.55);
}

/* Image */
.menu-image {
    position: middle;
    background: #111;
    padding: 5px;
}

.menu-image img {
    width: 100%;
    transition: transform 0.4s ease;
}

.menu-card:hover img {
    transform: scale(1.08);
}

/* Tag */
.tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ffb703;
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
}

/* Info */
.menu-info {
    padding: 22px;
}

.menu-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.menu-info p {
    font-size: 0.9rem;
    color: #c9c9c9;
    line-height: 1.5;
}

/* Footer */
.menu-footer {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffb703;
}

.order-btn {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid #ffb703;
    color: #ffb703;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.order-btn:hover {
    background: #ffb703;
    color: #000;
}

/* CTA */
.menu-cta {
    text-align: center;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 1100px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}
/* Location & Delivery Section */
.location {
    padding: 90px 20px;
    background: linear-gradient(180deg, #0f0f0f, #141414);
}

.location-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

/* Info */
.location-info h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.location-info h2 span {
    background: linear-gradient(90deg, #ffb703, #ff8800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.location-info p {
    margin: 20px 0 30px;
    color: #c7c7c7;
    max-width: 500px;
    line-height: 1.6;
}

/* Delivery Points */
.delivery-points {
    list-style: none;
    margin-bottom: 30px;
}

.delivery-points li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #e0e0e0;
}

/* Buttons */
.location-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline {
    padding: 14px 28px;
    border-radius: 30px;
    border: 1px solid #ffb703;
    color: #ffb703;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #ffb703;
    color: #000;
}

/* Map */
.location-map {
    background: #161616;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #1f1f1f;
}

.location-map iframe {
    width: 100%;
    height: 350px;
    border: none;
    filter: grayscale(100%) invert(90%);
}

/* Responsive */
@media (max-width: 900px) {
    .location-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .location-info p {
        margin-left: auto;
        margin-right: auto;
    }

    .location-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .location-info h2 {
        font-size: 2.1rem;
    }

    .location-map iframe {
        height: 280px;
    }
}

/* Reviews Section */
.reviews {
    padding: 90px 20px;
    background: radial-gradient(circle at top, #141414, #0f0f0f);
}

.reviews-container {
    max-width: 1200px;
    margin: auto;
}

/* Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* Card */
.review-card {
    background: #161616;
    border-radius: 22px;
    padding: 32px 28px;
    border: 1px solid #1f1f1f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.55);
}

/* Stars */
.review-stars {
    font-size: 1.1rem;
    margin-bottom: 14px;
}

/* Text */
.review-text {
    font-size: 0.95rem;
    color: #cfcfcf;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* User */
.review-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffb703;
}

.review-user h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.review-user span {
    font-size: 0.8rem;
    color: #a8a8a8;
}

/* Responsive */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 26px 22px;
    }
}

/* Contact Section */
.contact {
    padding: 90px 20px;
    background: linear-gradient(180deg, #0f0f0f, #141414);
}

.contact-container {
    max-width: 1200px;
    margin: auto;
}

/* Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

/* Info */
.contact-info {
    background: #161616;
    padding: 36px 32px;
    border-radius: 22px;
    border: 1px solid #1f1f1f;
}

.contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.contact-info p {
    font-size: 0.95rem;
    color: #c7c7c7;
    margin-bottom: 22px;
}

.contact-info ul {
    list-style: none;
}

.contact-info li {
    font-size: 0.95rem;
    margin-bottom: 14px;
    color: #e0e0e0;
}

/* Form */
.contact-form {
    background: #161616;
    padding: 36px 32px;
    border-radius: 22px;
    border: 1px solid #1f1f1f;
}

.form-group {
    margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form textarea {
    min-height: 120px;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ffb703;
    box-shadow: 0 0 0 2px rgba(255, 183, 3, 0.2);
}

/* Button */
.contact-form .btn-primary {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #0f0f0f;
  color: #fff;
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 52px;
}

.hero p {
  color: #aaa;
  margin: 15px 0 30px;
}

.btn {
  padding: 14px 35px;
  background: #ff9800;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
}

/* Menu */
.menu-title {
  text-align: center;
  font-size: 36px;
  margin: 40px 0;
}

.menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  padding: 20px;
}

.pizza-card {
  background: #1c1c1c;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}

.pizza-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(255,152,0,0.4);
}

.pizza-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

.price {
  color: #ff9800;
  font-size: 20px;
  margin: 10px 0;
}

.order-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #ff9800;
  color: #000;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
}

body {
  background: #0f0f0f;
  color: #fff;
  font-family: Arial;
}

.menu-title {
  text-align: center;
  margin: 30px;
}

.menu-container {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.pizza-card {
  background: #1c1c1c;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.price {
  color: #ff9800;
}

.order-btn {
  padding: 10px 20px;
  background: #ff9800;
  border: none;
  cursor: pointer;
  border-radius: 20px;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.popup-box {
  background: #1c1c1c;
  padding: 25px;
  border-radius: 15px;
  width: 320px;
}

.popup-box input,
.popup-box textarea {
  width: 100%;
  margin: 8px 0;
  padding: 8px;
  background: #000;
  border: 1px solid #333;
  color: #fff;
}

.popup-box button {
  width: 100%;
  padding: 10px;
  background: #ff9800;
  border: none;
  border-radius: 20px;
  margin-top: 10px;
}

.close {
  float: right;
  cursor: pointer;
}

/* Admin */
.admin-table {
  width: 95%;
  margin: auto;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  border: 1px solid #333;
  padding: 8px;
}
.login-box {
  width: 300px;
  margin: 120px auto;
  background: #1c1c1c;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}

.login-box input {
  width: 100%;
  margin: 8px 0;
  padding: 10px;
  background: #000;
  color: #fff;
  border: 1px solid #333;
}

.login-box button {
  width: 100%;
  padding: 10px;
  background: #ff9800;
  border: none;
  border-radius: 20px;
}

.admin-table button {
  margin: 2px;
  padding: 5px 8px;
  cursor: pointer;
}

.pending {
  color: orange;
}

.completed {
  color: lightgreen;
}

.logout {
  margin-left: 20px;
  padding: 8px 15px;
  background: red;
  border: none;
  color: #fff;
  cursor: pointer;
}


body {
  background: #0f0f0f;
  color: #fff;
  font-family: Arial;
}

.menu-title {
  text-align: center;
  margin: 30px;
}

.menu-container {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.pizza-card {
  background: #1c1c1c;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.price {
  color: #ff9800;
}

.order-btn {
  padding: 10px 20px;
  background: #ff9800;
  border: none;
  cursor: pointer;
  border-radius: 20px;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.popup-box {
  background: #1c1c1c;
  padding: 25px;
  border-radius: 15px;
  width: 320px;
}

.popup-box input,
.popup-box textarea {
  width: 100%;
  margin: 8px 0;
  padding: 8px;
  background: #000;
  border: 1px solid #333;
  color: #fff;
}

.popup-box button {
  width: 100%;
  padding: 10px;
  background: #ff9800;
  border: none;
  border-radius: 20px;
  margin-top: 10px;
}

.close {
  float: right;
  cursor: pointer;
}

/* Admin */
.admin-table {
  width: 95%;
  margin: auto;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  border: 1px solid #333;
  padding: 8px;
}


.menu-container {

  grid-template-columns: repeat(0.5, 2fr); /* প্রতি row তে 3টা */
  gap: 30px;
}


.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.img-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.img-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover zoom effect */
.img-card:hover img {
  transform: scale(1.1);
}

/* Title overlay */
.img-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0f0f0f;
  color: #eaeaea;
}

/* ---------- REVIEW SECTION ---------- */
.review-section {
  padding: 80px 20px;
  text-align: center;
}

.review-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #fff;
}

.review-section h2 span {
  color: #ff4d00;
}

.review-box {
  max-width: 700px;
  margin: auto;
  background: #1a1a1a;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  animation: fade 0.8s ease-in-out;
}

.review-box p {
  font-size: 18px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 20px;
}

.review-box h4 {
  color: #ff4d00;
  font-weight: 600;
}

/* ---------- ANIMATION ---------- */
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .review-box p {
    font-size: 16px;
  }
}
/* Optional CSS for the footer */
footer {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

footer a {
    color: #00acee;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #111;
        flex-direction: column;
        gap: 20px;
        padding: 25px 0;
        display: none;
    }

    #nav-toggle:checked ~ .nav {
        display: flex;
    }

    .nav a {
        font-size: 1.1rem;
    }
}
