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

body{
    font-family:'Poppins',sans-serif;
    background: white;
    overflow-x:hidden;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 60px;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
}

.logo-circle {
  width: 32px;
  height: 32px;
  background: #FF6B35;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #FF6B35;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a:hover {
  color: #FF6B35;
}

.login-btn {
  background: linear-gradient(45deg, orange,red);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.login-btn:hover {
  background: red;
}

/* BUTTON */
.btn{
    padding:8px 18px;
    border:none;
    border-radius:20px;
    background:linear-gradient(90deg,#E65100,#BF360C);
    color: white;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.btn:hover{
    transform:scale(1.05);
}

/* HEADER */
.menu-header{
    text-align:left;
    padding: 80px 60px;
    background: url('menu.jpeg') center/cover no-repeat;
    color:white;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.menu-header h1{
    font-size:3rem;
    margin-bottom:1rem;
}

.menu-header p{
    font-size:1.1rem;
}

/* MENU SECTION */
.menu-section{
    max-width:1200px;
    margin:auto;
    padding:4rem 1rem;
}

.menu-section h2{
    text-align:center;
    font-size:2.5rem;
    margin-bottom:3rem;
    color:#333;
}

/* CARDS */
.menu-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:2rem;
}

.card{
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
    text-align: center;
    padding-bottom: 15px;
}

.card:hover{
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.card img{
    width:100%;
    height:170px;
    object-fit:cover;
}

.card-content{
    padding:1.5rem;
}

.card h3{
    margin: 10px 0 5px;
}

.card p{
    font-size: 14px;
    color: #666;
}

.price{
    color: #ff6b35;
    font-weight: 700;
    margin: 10px 0;
}

.card button{
    background: linear-gradient(45deg, orange, red);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
}

.card button:hover{
    background: red;
}

/* SHOW MORE */
.extra{
    display:none;
}

/* Show hidden cards */
#menu-toggle:checked ~ .menu-container .extra{
    display:block;
}

/* Button styling */
.show-btn{
    display:block;
    width:fit-content;
    margin:2rem auto 0;
    padding:1rem 2rem;
    background: linear-gradient(45deg, orange, red);
    color:white;
    border-radius:30px;
    cursor:pointer;
}

/* Hover */
.show-btn:hover{
    background: red;
}

/* Default text */
.show-less{
    display:none;
}

/* Toggle text */
#menu-toggle:checked ~ .show-btn .show-more{
    display:none;
}

#menu-toggle:checked ~ .show-btn .show-less{
    display:inline;
}

/* FOOTER */
footer{
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/* RESPONSIVE */
@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:1rem;
    }

    .nav-links{
        gap:1rem;
    }

    .menu-header h1{
        font-size:2.2rem;
    }

    .menu-section h2{
        font-size:2rem;
    }
}