/* General Styling */
.d-food {
  padding: 50px 15px;
}

.d-about-img {
  width: 100%;
  max-width: 550px; /* Increased size */
  border-radius: 20px;
  opacity: 0.9;
}

.d-about-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.d-about-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  padding-top: 20px;
}

.d-about-redreels {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.d-about-symbol {
  font-size: 22px;
  margin-top: 5px;
}

.d-about-info {
  font-size: 15px;
}

/* Explore Menu Button - Centered at the Bottom */
.d-button-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.d-button-text {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  text-align: center;
  background-color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.d-button-text:hover {
  background-color: #ddd;
}

/* --------- Responsive Design --------- */

/* For 4K Screens */
@media (min-width: 2000px) {
    .d-about-img {
        max-width: 900px; /* Larger image */
    }

    .d-about-title {
        font-size: 3rem;        
    }

    .d-about-info {
        font-size: 22px; /* Bigger text */
    }

    .d-button-text {
        font-size: 20px;
        padding: 16px 32px;
    }
}



/* Larger Image for Laptop Screens */
@media (min-width: 992px) and (max-width: 1400px) {
  .d-about-img {
      max-width: 700px; /* Increased size */
  }
}

/* Tablet and Mobile Adjustments */
@media (max-width: 991px) {
  .row {
      flex-direction: column;
      text-align: center;
  }

  .d-about-header {
      align-items: center;
      text-align: center;
  }

  .d-about-redreels {
      justify-content: center;
      text-align: left;
  }

  /* Move "Explore Menu" button to bottom */
  .d-button-container {
      order: 3;
      margin-top: 20px;
  }

  .d-about-img {
      max-width: 80%;
  }
}

@media (max-width: 768px) {
  .about-section {
      padding: 20px;
      text-align: left;
  }

  .about-section h2 {
      font-size: 22px;
      text-align: center;
  }

  .about-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 15px;
  }

  .about-item span {
      font-size: 20px;
      color: white;
      flex-shrink: 0;
  }

  .about-item p {
      font-size: 14px;
      color: white;
      line-height: 1.6;
      margin: 0;
  }
}
