/* Khashayar Delnavaz 290999 */

@font-face {
  font-family: Futura;
  src: url("Font/FuturaPT-Book.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#body-about, 
#body-location {
  background-color: rgb(30, 30, 30);
}

#menuu-container {
  display: flex;
  flex-direction: column;
  background-color: rgb(232, 231, 231);
}

#container-contact {
  display: flex;
  flex-direction: column;
  background-color: rgb(30, 30, 30);
  row-gap: 20px;
}

body {
  background-color: #e8e7e7;
  font-size: 16px;
  overflow-x: hidden;
  font-family: Futura;
}

#container {
  display: flex;
  flex-direction: column;
  background-color: rgb(232, 231, 231);
  row-gap: 20px;
}

/* Hero section */
#header-container {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(image/try2.webp) center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

/* Header */
header {
  display: flex;
  flex-direction: column;
  padding: 10px 40px;
  row-gap: 10px;
}

/* Top navigation */
#top1 {
  color: rgb(237, 231, 231);
  display: flex;
  justify-content: flex-start;
  gap: 25px;
}

#top1 a {
  color: rgb(237, 231, 231);
  text-decoration: none;
  font-size: 15px;
  position: relative;
  padding-bottom: 5px;
}

#top1 a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: rgb(176, 108, 24);
  transition: width 0.3s ease;
}

#top1 a:hover::after {
  width: 100%;
}

/* Divider line */
#line {
  background-color: rgb(114, 114, 114);
  height: 1px;
}

/* Main header section */
#top2 {
  display: flex;
  color: rgb(237, 231, 231);
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

#top2-text {
  display: flex;
  justify-content: flex-start;
  margin: auto;
  flex: 1;
  column-gap: 35px;
  align-items: center;
  min-width: 200px;
}

#top2-text a {
  color: white;
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
  font-size: 19px;
}

#top2-text a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: rgb(176, 108, 24);
  transition: width 0.3s ease;
}

#top2-text a:hover::after {
  width: 100%;
}

#top2-img {
  width: 45%;
  min-width: 150px;
}

#top2 img {
  width: 250px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

#top2 img:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

#top2 svg {
  width: 20px;
  height: 20px;
  fill: white;
  margin-right: 10px;
  transition: 0.3s;
}

#top2 svg:hover {
  fill: rgb(176, 108, 24);
  transform: scale(1.2);
}

/* Hero content */
#content {
  display: flex;
  flex-direction: column;
  height: 500px;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  margin-top: 40px;
}

#content p {
  color: white;
  margin: auto auto 0;
  font-size: 65px;
  line-height: 1.2;
}

#content a {
  display: inline-block;
  margin: 20px auto auto;
  padding: 10px 25px;
  background: none;
  border: 2px solid white;
  color: white;
  border-radius: 5px;
  font-size: 20px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#content a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: white;
  transition: left 0.3s ease;
  z-index: -1;
}

#content a:hover::before {
  left: 0;
}

#content a:hover {
  color: black;
}

/* Menu grid section */
#second-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
  max-width: 100%;
}

#food {
  margin-left: 20px;
  position: relative;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("image/breakfast.webp") center/cover no-repeat;
  height: 500px;
}

#drink {
  margin-right: 20px;
  position: relative;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("image/latte.webp") center/cover no-repeat;
  height: 500px;
}

#dessert {
  margin-left: 20px;
  position: relative;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("image/tiramisu.webp") center/cover no-repeat;
  height: 500px;
  background-size: cover;
}

#milkshake {
  margin-right: 20px;
  position: relative;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("image/milkshake.webp") center/cover no-repeat;
  height: 500px;
  background-position: top;
}

#second-bar a {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  background: none;
  border: 1px solid white;
  color: white;
  border-radius: 5px;
  font-size: 17px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

#second-bar a:hover {
  background-color: white;
  color: black;
}

/* Footer */
footer {
  background-color: rgb(30, 30, 30);
  color: rgb(230, 230, 230);
  padding: 40px;
}

#main-footer {
  margin-top: 20px;
}

#footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-section h3 {
  color: rgb(176, 108, 24);
  margin-bottom: 10px;
}

.footer-section p {
  line-height: 1.6;
}

#footer-icons svg {
  width: 20px;
  height: 20px;
  fill: white;
  margin-right: 10px;
  transition: 0.3s;
}

#footer-icons svg:hover {
  fill: rgb(176, 108, 24);
}

#copyright {
  text-align: center;
  font-size: 14px;
  color: rgb(180, 180, 180);
  border-top: 1px solid rgb(80, 80, 80);
  padding-top: 10px;
}

/* Location Page */
#location-container {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(image/Wrapper-out.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 80% center;
  height: 110vh;
  position: relative;
}

#location-content {
  display: flex;
  flex-direction: column;
  height: 260px;
  background: rgb(228, 228, 228);
  width: 380px;
  position: absolute;
  right: 67%;
  bottom: 40%;
  border-radius: 10px;
}

#location-content a {
  display: inline-block;
  margin: auto;
  padding: 15px 30px;
  color: white;
  border-radius: 4px;
  font-size: 17px;
  text-decoration: none;
  background: linear-gradient(90deg, rgb(35, 31, 32), rgb(105, 105, 105), rgb(36, 36, 36));
  background-size: 300%;
  background-position: 0% 0%;
}

#location-content a:hover {
  animation: glow 0.6s ease-in-out forwards;
}

@keyframes glow {
  0% {background-position: 0% 0%;}
  100% {background-position: 100% 0%;}
}

#location-content p {
  color: rgb(33, 32, 32);
  margin: auto auto 0;
  font-size: 30px;
  line-height: 1.5;
}

#location-content p span {
  font-size: 20px;
}

/* About Us Page */
#aboutUs-container {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(image/Board.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  position: relative;
  padding-bottom: 40px;
}

#aboutUs-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

#aboutUs-content p {
  color: rgb(255, 255, 255);
  font-size: 25px;
  line-height: 1.7;
  width: 60%;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.3);
  padding: 40px;
  border-radius: 10px;
}

#aboutUs-content p span {
  font-size: 32px;
  color: rgb(176, 108, 24);
  font-weight: bold;
  display: block;
  margin-bottom: 15px;
}

/* Contact Page */
#contactUs-container {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(image/contact.webp);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  position: relative;
}

#contactUs-content p{
    color: rgb(207, 205, 205);
    margin: auto;
    margin-bottom: 0;
    font-size: 70px;
    line-height: 1.7;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 30%
}



#mainC {
    width: 100%;
    background-color: rgb(232, 231, 231);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

#info-bar {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    row-gap: 20px;
}

/* Form row 1 - Name and Email */
#info1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 20px;
}

#info-name,
#info-email {
    display: flex;
    flex-direction: column;
    width: 100%;
    row-gap: 10px;
}

#info1 label,
#info2 label {
    color: #333;
    font-weight: 600;
    font-size: 15px;
}

#info1 input {
    height: 45px;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    background-color: white;
    font-size: 15px;
    transition: all 0.3s ease;
}

#info1 input:focus {
    outline: none;
    border-color: rgb(176, 108, 24);
    box-shadow: 0 0 0 3px rgba(176, 108, 24, 0.1);
}

#info1 input::placeholder {
    color: #999;
}

/* Form row 2 - Message */
#info2 {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

#info2 textarea {
    resize: vertical;
    max-height: 300px;
    min-height: 150px;
    padding: 12px;
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    transition: all 0.3s ease;
}

#info2 textarea:focus {
    outline: none;
    border-color: rgb(176, 108, 24);
    box-shadow: 0 0 0 3px rgba(176, 108, 24, 0.1);
}

#info2 textarea::placeholder {
    color: #999;
}

/* Submit button */
#info3 {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

#submit {
    background-color: #202020;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#submit:hover {
    background-color: rgb(176, 108, 24);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(176, 108, 24, 0.3);
}

#submit:active {
    transform: translateY(0);
}

/* Order Online Page */
#Order-container {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
    url(image/Delivery.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

#Order-content {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

#delivery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  justify-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

#delivery-heading {
  color: white;
  font-size: 40px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  margin-bottom: 20px;
}

#delivery {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding: 30px;
  background-color: white;
  max-width: 230px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#delivery:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

#delivery img {
  height: 100px;
  width: 100px;
  margin: auto;
  transition: transform 0.3s ease;
}

#delivery:hover img {
  transform: scale(1.1);
}

#justeat {
  color: #ffac12;
  font-weight: bold;
}

#deliveroo {
  color: rgb(7, 197, 197);
  font-weight: bold;
}

#uber {
  color: rgb(36, 128, 0);
  font-weight: bold;
}

#delivery p {
  font-size: 16px;
}

#delivery a {
  background-color: #202020;
  color: white;
  padding: 13px 27px;
  border-radius: 4px;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
}

#guide-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

#guide {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding: 30px;
  background-color: rgb(0, 0, 0);
  max-width: 230px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

#guide:hover {
  transform: translateY(-10px);
  background-color: rgb(30, 30, 30);
  box-shadow: 0 15px 40px rgba(176, 108, 24, 0.3);
}

#guide svg {
  margin: auto;
  width: 60px;
  height: 60px;
  fill: rgb(176, 108, 24);
  transition: transform 0.3s ease;
}

#guide:hover svg {
  transform: scale(1.15) rotate(5deg);
}

#guide p {
  font-size: 15px;
  color: white;
}

#guide h3 {
  color: rgb(176, 108, 24);
  font-size: 16px;
}

/* Menu Page */
#Menu-container {
  background-color: black;
  overflow-y: auto;
  position: relative;
  min-height: 100vh;
}

#top3 {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-left: 50px;
  margin-top: 10px;
  padding: 20px 0;
}

#top3 h3 {
  color: #ffac12;
}

#top3 h1 {
  color: white;
}

#menu-section {
  display: flex;
  background-color: white;
  min-height: 80vh;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  row-gap: 10px;
  background-color: #f5f5f5;
  min-width: 200px;
  border-right: 2px solid #e0e0e0;
}

.menu-btn button {
  border: none;
  color: #6a6969;
  padding: 15px 20px;
  background-color: transparent;
  text-align: left;
  font-size: 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.menu-btn button:hover {
  background-color: #e8e8e8;
  color: #202020;
}

.menu-btn button:focus,
.menu-btn button.active {
  background-color: #202020;
  color: white;
}

.menu-content {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.menu-content.visible {
  display: grid;
  opacity: 1;
}

.menu-item {
  display: flex;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto;
  position: relative;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.menu-img {
  flex: 0 0 45%;
  overflow: hidden;
}

.menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-item:hover .menu-img img {
  transform: scale(1.05);
}

.menu-text {
  flex: 1;
  padding: 25px;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-text h2 {
  margin-bottom: 10px;
  color: #202020;
  font-size: 24px;
  font-weight: bold;
}

.menu-text p {
  color: #6a6969;
  font-size: 15px;
  line-height: 1.6;
}

#carrot-cake {
  object-position: top;
}

.menu-item::after {
  content: 'View Details';
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: linear-gradient(135deg, rgba(176, 108, 24, 0.95), rgba(150, 90, 20, 0.95));
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(176, 108, 24, 0.4);
}

.menu-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(32, 32, 32, 0.9));
  backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  border-radius: 24px;
  max-width: 920px;
  width: 92%;
  max-height: 92vh;
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, rgba(176, 108, 24, 0.9), rgba(150, 90, 20, 1));
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(176, 108, 24, 0.4);
}

.modal-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: linear-gradient(135deg, rgb(200, 120, 28), rgb(176, 108, 24));
  box-shadow: 0 6px 20px rgba(176, 108, 24, 0.6);
}

.modal-close:active {
  transform: rotate(90deg) scale(0.95);
}

.modal-content {
  display: flex;
  height: 100%;
  max-height: 92vh;
}

.modal-left {
  flex: 0 0 42%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.modal-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.modal-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.modal:hover .modal-left img {
  transform: scale(1.05);
}

.image-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none;
}

.modal-right {
  flex: 1;
  padding: 45px 40px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, #ffffff, #fafafa);
}

.modal-right::-webkit-scrollbar {
  width: 8px;
}

.modal-right::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.modal-right::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgb(176, 108, 24), rgb(150, 90, 20));
  border-radius: 10px;
}

.modal-right::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgb(200, 120, 28), rgb(176, 108, 24));
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
  animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header h2 {
  color: #1a1a1a;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
  flex: 1;
}

.modal-price-badge {
  background: linear-gradient(135deg, rgb(176, 108, 24), rgb(150, 90, 20));
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(176, 108, 24, 0.4);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.modal-price-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(176, 108, 24, 0.5);
}

#modal-total-price {
  font-size: 28px;
  font-weight: bold;
  transition: transform 0.2s ease;
  display: block;
}

.modal-right > p {
  margin-bottom: 30px;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  animation: fadeIn 0.6s ease 0.1s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#modal-options {
  margin-bottom: 30px;
  animation: fadeIn 0.6s ease 0.2s both;
}

#modal-options h3 {
  margin-bottom: 18px;
  color: #1a1a1a;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-option {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
  padding: 18px 20px;
  background: white;
  border: 2px solid #e8e8e8;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.modal-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(176, 108, 24, 0.05), rgba(150, 90, 20, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-option:hover {
  border-color: rgb(176, 108, 24);
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(176, 108, 24, 0.15);
}

.modal-option:hover::before {
  opacity: 1;
}

.modal-option input[type="radio"] {
  margin: 6px 15px 0 0;
  width: 20px;
  height: 20px;
  accent-color: rgb(176, 108, 24);
  flex-shrink: 0;
}

.modal-option input[type="radio"]:checked ~ label {
  color: rgb(176, 108, 24);
}

.modal-option label {
  flex: 1;
  position: relative;
  z-index: 1;
}

.option-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.option-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.option-name {
  font-size: 17px;
  font-weight: bold;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.option-description {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
}

.option-price {
  font-size: 18px;
  font-weight: bold;
  color: rgb(176, 108, 24);
  background: rgba(176, 108, 24, 0.1);
  padding: 8px 16px;
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.modal-addons {
  margin-bottom: 30px;
  animation: fadeIn 0.6s ease 0.3s both;
}

.modal-addons h3 {
  margin-bottom: 18px;
  color: #1a1a1a;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

#addon-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.addon-item {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  background: white;
  border: 2px solid #e8e8e8;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 60px;
}

.addon-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(176, 108, 24, 0.08), rgba(150, 90, 20, 0.08));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.addon-item:hover {
  border-color: rgb(176, 108, 24);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(176, 108, 24, 0.2);
}

.addon-item:hover::before {
  opacity: 1;
}

.addon-item input[type="checkbox"] {
  margin-right: 12px;
  width: 20px;
  height: 20px;
  accent-color: rgb(176, 108, 24);
  flex-shrink: 0;
  z-index: 1;
  align-self: center;
}

.addon-item label {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.addon-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.addon-icon {
  font-size: 20px;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.addon-name {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 600;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.addon-price {
  font-size: 15px;
  color: rgb(176, 108, 24);
  font-weight: bold;
  background: rgba(176, 108, 24, 0.1);
  padding: 4px 12px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
}

.no-addons {
  grid-column: 1 / -1;
  font-size: 14px;
  color: #999;
  font-style: italic;
  padding: 20px;
  text-align: center;
  background: #f8f8f8;
  border-radius: 12px;
}

.modal-footer {
  margin-top: auto;
  padding-top: 25px;
  border-top: 2px solid #e8e8e8;
  animation: fadeIn 0.6s ease 0.4s both;
}

.order-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(176, 108, 24, 0.1), rgba(150, 90, 20, 0.1));
  border-radius: 14px;
  border: 2px solid rgba(176, 108, 24, 0.2);
}

.order-info svg {
  color: rgb(176, 108, 24);
  flex-shrink: 0;
}

.order-info span {
  font-size: 15px;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
}

.order-info a {
  color: rgb(176, 108, 24);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.order-info a:hover {
  color: rgb(200, 120, 28);
  text-decoration: underline;
}

.order-info a:active {
  transform: scale(0.98);
}

/* Modal Animations */
.modal.active .modal-header {
  animation: slideInDown 0.5s ease;
}

.modal.active .modal-right > p {
  animation: fadeIn 0.6s ease 0.1s both;
}

.modal.active #modal-options {
  animation: fadeIn 0.6s ease 0.2s both;
}

.modal.active .modal-addons {
  animation: fadeIn 0.6s ease 0.3s both;
}

.modal.active .modal-footer {
  animation: fadeIn 0.6s ease 0.4s both;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  #content p {
    font-size: 55px;
  }
  
  #second-bar {
    padding: 15px;
  }
  
  #food, #drink, #dessert, #milkshake {
    height: 400px;
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media screen and (max-width: 900px) {
  header {
    padding: 10px 25px;
  }
  
  #top1 {
    gap: 15px;
    font-size: 12px;
  }
  
  #top1 a {
    font-size: 14px;
  }
  
  #top2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  #top2-img {
    width: 100%;
    text-align: center;
  }
  
  #top2 img {
    width: 200px;
    height: 35px;
  }
  
  #top2-text {
    width: 100%;
    justify-content: center;
    column-gap: 40px;
    font-size: 18px;
  }
  
  #top2-svg {
    width: 100%;
    text-align: center;
  }
  
  #content p {
    font-size: 45px;
  }
  
  #content a {
    font-size: 18px;
    padding: 10px 20px;
  }
  
  #second-bar {
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 15px;
  }
  
  #food, #drink, #dessert, #milkshake {
    margin: 0;
    height: 350px;
  }
  
  #footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  footer {
    padding: 30px 25px;
  }
  
  #location-content {
    width: 300px;
    right: 65%;
  }
  
  #location-content p {
    font-size: 26px;
  }
  
  #location-content p span {
    font-size: 18px;
  }
  
  #aboutUs-content p {
    font-size: 18px;
    padding: 30px;
    width: 80%;
  }
  
  #info-bar {
    padding: 30px;
    width: 90%;
  }
  
  #delivery-container,
  #guide-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding: 20px;
    gap: 30px;
  }
  
  #delivery,
  #guide {
    max-width: 100%;
  }
  
  .modal {
    max-width: 96%;
  }

  .modal-content {
    flex-direction: column;
  }

  .modal-left {
    flex: 0 0 280px;
    width: 100%;
  }

  .modal-right {
    padding: 35px 30px;
  }

  .modal-header h2 {
    font-size: 30px;
  }

  #addon-container {
    grid-template-columns: 1fr;
  }
  
  #Menu-container header {
    padding: 15px 25px;
  }
  
  #menu-section {
    flex-direction: column;
  }
  
  #top3 {
    padding: 15px 0;
    margin-left: 25px;
  }
  
  #top3 h3 {
    font-size: 14px;
  }
  
  #top3 h1 {
    font-size: 45px;
  }
  
  .menu-btn {
    flex-direction: row;
    gap: 10px;
    padding: 15px;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .menu-btn button {
    padding: 12px 20px;
    font-size: 14px;
    min-width: auto;
    flex-shrink: 0;
  }
  
  .menu-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    padding: 20px;
  }
  
  
  .menu-text h2 {
    font-size: 20px;
  }
  
  .menu-text p {
    font-size: 13px;
  }
}

@media screen and (max-width: 600px) {
  header {
    padding: 10px 15px;
  }
  
  #top1 {
    gap: 10px;
    font-size: 11px;
    flex-wrap: wrap;
  }
  
  #top1 a {
    font-size: 13px;
  }
  
  #top2 img {
    width: 180px;
    height: 30px;
  }
  
  #top2-text {
    column-gap: 35px;
    font-size: 17px;
  }
  
  #top2 svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
  }
  
  #header-container {
    height: 80vh;
  }
  
  #content {
    height: 350px;
    padding: 20px 15px;
    margin-top: 20px;
  }
  
  #content p {
    font-size: 32px;
    line-height: 1.3;
  }
  
  #content a {
    font-size: 16px;
    padding: 8px 18px;
    margin-top: 15px;
  }
  
  #second-bar {
    grid-template-columns: 1fr;
    padding: 10px;
    gap: 15px;
  }
  
  #food, #drink, #dessert, #milkshake {
    height: 300px;
  }
  
  #second-bar a {
    padding: 12px 25px;
    font-size: 15px;
  }
  
  #footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  footer {
    padding: 25px 20px;
  }
  
  .footer-section h3 {
    font-size: 18px;
  }
  
  .footer-section p {
    font-size: 14px;
  }
  
  #copyright {
    font-size: 12px;
  }
  
  #location-container {
    height: 100vh;
  }
  
  #location-content {
    width: 90%;
    max-width: 320px;
    height: auto;
    padding: 20px;
    right: auto;
    left: 50%;
    bottom: 35%;
    transform: translate(-50%, 0);
  }
  
  #location-content p {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  #location-content p span {
    font-size: 16px;
  }
  
  #location-content a {
    padding: 12px 25px;
    font-size: 15px;
  }
  
  #aboutUs-container {
    height: auto;
    min-height: 100vh;
    background-attachment: scroll;
  }
  
  #aboutUs-content {
    width: 95%;
    max-width: none;
    height: auto;
    padding: 20px;
    margin: 20px auto;
    position: static;
    transform: none;
  }
  
  #aboutUs-content p {
    font-size: 16px;
    line-height: 1.8;
    width: 100%;
  }
  
  #aboutUs-content p span {
    font-size: 20px;
  }
  
  #contactUs-container {
    height: auto;
    min-height: 60vh;
  }
  
  #contactUs-content {
    padding: 20px 0;
  }
  
  #contactUs-content p {
    font-size: 32px;
  }
  
  #info-bar {
    width: 95%;
    padding: 20px 15px;
    margin: 20px auto;
  }
  
  #info1 {
    flex-direction: column;
    gap: 15px;
  }
  
  #info-name input, 
  #info-email input {
    padding: 10px;
    font-size: 14px;
  }
  
  #info2 textarea {
    padding: 10px;
    font-size: 14px;
  }
  
  #submit {
    padding: 12px 30px;
    font-size: 15px;
  }
  
  #Order-container {
    padding: 0 10px 20px;
    background-attachment: scroll;
  }
  
  #delivery-heading {
    font-size: 28px;
    padding: 20px 15px;
  }
  
  #delivery-container {
    grid-template-columns: 1fr;
    padding: 10px 5px;
    gap: 20px;
  }
  
  #delivery {
    padding: 20px 15px;
    max-width: 100%;
  }
  
  #delivery img {
    width: 120px;
    height: 120px;
  }
  
  #delivery h3 {
    font-size: 22px;
  }
  
  #delivery p {
    font-size: 14px;
  }
  
  #delivery a {
    padding: 10px 25px;
    font-size: 14px;
  }
  
  #guide-container {
    grid-template-columns: 1fr;
    padding: 10px 5px;
    gap: 20px;
  }
  
  #guide {
    padding: 20px 15px;
    max-width: 100%;
  }
  
  #guide svg {
    width: 80px;
    height: 80px;
  }
  
  #guide h3 {
    font-size: 18px;
  }
  
  #guide p {
    font-size: 13px;
  }
  
  .modal {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .modal-left {
    flex: 0 0 220px;
  }

  .modal-right {
    padding: 25px 20px;
  }

  .modal-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal-header h2 {
    font-size: 26px;
  }

  .modal-price-badge {
    align-self: flex-start;
    padding: 10px 20px;
  }

  #modal-total-price {
    font-size: 24px;
  }

  .modal-right > p {
    font-size: 15px;
  }

  #modal-options h3,
  .modal-addons h3 {
    font-size: 20px;
  }

  .modal-option,
  .addon-item {
    padding: 14px 16px;
  }

  .option-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .option-name,
  .addon-name {
    font-size: 15px;
  }

  .option-description {
    font-size: 13px;
  }

  .option-price,
  .addon-price {
    font-size: 16px;
  }

  .modal-close {
    width: 38px;
    height: 38px;
    font-size: 24px;
    top: 15px;
    right: 15px;
  }

  .order-info {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
  }

  .order-info span {
    font-size: 14px;
  }
  
  #Menu-container header {
    padding: 10px 15px;
  }
  
  #top3 {
    padding: 10px 0;
    margin-left: 15px;
  }
  
  #top3 h3 {
    font-size: 12px;
  }
  
  #top3 h1 {
    font-size: 32px;
  }
  
  .menu-btn {
    gap: 8px;
    padding: 10px;
  }
  
  .menu-btn button {
    padding: 12px 20px;
    font-size: 15px;
  }
  
  .menu-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 15px;
  }
  
  
  .menu-text {
    padding: 12px;
  }
  
  .menu-text h2 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  
  .menu-text p {
    font-size: 12px;
  }
  
  .menu-item::after {
    font-size: 12px;
    padding: 6px 14px;
    bottom: 12px;
    right: 12px;
  }
}

@media screen and (max-width: 400px) {
  #top1 {
    font-size: 10px;
    gap: 8px;
  }
  
  #top1 a {
    font-size: 12px;
  }
  
  #top2 img {
    width: 160px;
    height: 28px;
  }
  
  #content p {
    font-size: 28px;
  }
  
  #content a {
    font-size: 15px;
    padding: 8px 16px;
  }
  
  #second-bar a {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  #location-content {
    width: 95%;
  }
  
  #location-content p {
    font-size: 20px;
  }
  
  #aboutUs-content p {
    font-size: 15px;
  }
  
  #contactUs-content p {
    font-size: 28px;
  }
  
  #delivery-heading {
    font-size: 24px;
  }
  
  .modal-left {
    flex: 0 0 180px;
  }

  .modal-header h2 {
    font-size: 22px;
  }

  #modal-total-price {
    font-size: 22px;
  }

  .addon-icon {
    font-size: 18px;
  }
  
  #top3 h1 {
    font-size: 28px;
  }
  
  .menu-btn button {
    font-size: 14px;
    padding: 10px 18px;
  }

  
  .menu-text h2 {
    font-size: 17px;
  }
  
  .menu-text p {
    font-size: 11px;
  }
}