/* DINNER SECTION */
.dinner-section{
    padding: 80px 10px;
    background-color: #fff5f0;
    text-align: center;
}

.dinner-section .section-title{
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.dinner-section .section-subtitle{
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

/* GRID FOR DINNER CARDS */
.dinner-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    justify-items: center;
}

/* DINNER CARD STYLING */
.dinner-card{
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width:90%;
    max-width: 300px;
    text-align: center;
}

.dinner-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.dinner-card img{
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

.dinner-card h3{
    font-size: 22px;
    color: #333;
    margin-bottom: 5px;
}

.dinner-card .price{
    color: #ff6600;
    font-size: 18px;
    margin-bottom: 15px;
}

/* ORDER BUTTON STYLING */
.order-btn button{
    background-color: #dfb306;
    color: white;
    border: 2px solid #b3a196;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-btn button:hover{
    background-color: white;
    color: #d4c603;
    transform: scale(1.05);
}

/* Style <a> inside button */
.order-btn button a{
    color: inherit;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

/* Responsive adjustments */
@media(max-width:768px){
    .dinner-card h3{
        font-size: 20px;
    }
    .dinner-card .price{
        font-size: 16px;
    }
    .order-btn button{
        padding: 8px 16px;
        font-size: 14px;
    }
}


/* RESET */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* FOOTER */
.footer {
  background: #111;
  color: #eee;
  padding: 60px 20px 20px;
  margin-top: 60px;
  overflow: hidden; /* scroll-ka xallinaya */
}

/* FOOTER CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* FOOTER SECTIONS */
.footer-section h2,
.footer-section h3 {
  color: #ffb400;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-section p {
  line-height: 1.7;
  font-size: 15px;
}

/* LISTS */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
  word-break: break-word;
}

.footer-section ul li a:hover {
  color: #ffb400;
}

/* SOCIAL ICONS */
.footer-social a {
  color: #ddd;
  margin-right: 15px;
  font-size: 20px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ffb400;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 20px 10px;
  border-top: 1px solid #333;
  margin-top: 30px;
}

.footer-bottom p {
  font-size: 14px;
  color: #bbb;
}
