body {
  display: flex;
  flex-direction: column;
  background-color: #141414;
}
p {
  font-family: "Playfair Display", serif;
  color: #d3d3d3;
  font-weight: 100;
}
h2 {
  font-family: "Playfair Display", serif;
  color: #ff7a62a6;
  text-shadow: #000000 2px 2px 4px;
}
/*--------------------banner-------------------*/
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: #000 2px 2px 4px;
  text-align: center;
}
.banner-text h1,
.banner-text h2 {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
.banner-text h1 {
 font-family: "Yuji Mai", serif;
 font-size: 10rem;
 margin-right: 3rem;
}
.banner-text h2 {
 font-family: "Yuji Mai", serif;
 font-size: 7rem;
   color: #d3d3d3;

}
.banner-text p {
 font-family: "Playfair Display", serif;
 font-size: 1.5rem;
}
button {
  margin-top: 20px;
  padding: 4px 8px;
  font-size: 1rem;
  background-color: #ff7a62a6;
  color: white;
  border: 1px solid #bbbbbb;
  cursor: pointer;
}
button:hover {
  background-color: #ff7962;
}
button:active {
  background-color: #ff79623d;
  transform: translateY(2px);
}
/*--------------------quick links-------------------*/
.quick-links {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 30px 20px;
  background: #181818;
  border-bottom: 1px solid #2a2a2a;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}
.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #ddd;
  font-family: "Playfair Display", serif;
  transition: 0.3s ease;
}
.quick-item span {
  font-size: 28px;
  color: #ff7a62a6;
  margin-bottom: 8px;
}
.quick-item p {
  font-size: 0.9rem;
  margin: 0;
}
.quick-item:hover {
  transform: translateY(-5px);
  color: white;
}
.quick-item:hover span {
  color: #ff7a62;
}
/*--------------------who we are-about-------------------*/
.about {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 10px 20px 40px 20px;
  max-width: 900px;
  margin: 40px auto 20px auto;
   background: linear-gradient(#080808, #252525);
  border: #3d3d3d 1px solid;
}
.about img {
  width: 40%; 
  border-radius: 10px;
  animation: fadeIn 1.8s ease-in-out forwards;
  animation-timeline: view(); 
  animation-range: entry 10% cover 65%; 
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
.about-text {
  width: 60%;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  color:  #dddddd;
  font-weight: 100;
}
.about-text h2 {
  font-size: 2.5rem;
  color: #ff7a62a6;
  text-shadow: #000 2px 2px 4px;
}
/*--------------images gallery-carousel-------------------*/
.carousel {
  text-align: right;
  padding: 20px 20px;
  color: #eee;
  border:#3d3d3d 1px solid;
  background: linear-gradient(#252525, #080808);
  max-width: 900px;
  margin: 20px auto 20px auto;
}
.carousel p {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: #d3d3d3;
  font-weight: 100;
  padding: 0 30px 30px 30px;
}
.carousel h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #ff7a62a6;
  text-shadow: #000000 2px 2px 4px;
  padding: 0 30px;
}
.carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}
.carousel-track img {
  min-width: 100%;
  height: 500px;
  object-fit: cover;
}
/* arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 5px;
  z-index: 2;
}
.arrow:hover {
  background: rgba(0,0,0,0.7);
}
.left { left: 10px; }
.right { right: 10px; }
/* dots */
.dots {
  margin-top: 15px;
}
.dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 5px;
  background: #555;
  border-radius: 50%;
  cursor: pointer;
}
.dots .active {
  background: #ff7a62;
}
/*--------------highlight section-our philosophy-------------*/
.highlight-section {
  padding: 20px;
  background-color: #1f1f1f;
  background-image: url('img/chef.jpg');
  background-size: cover;
  background-blend-mode: overlay;
  color: #eee;
  border: #3d3d3d 1px solid;
  align-items: center;
  max-width: 900px;
  width: 100%;
  margin: 20px auto;
}
.features details {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}
.features summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: #eee;
  gap: 10px;
}
.highlight-section h2 {
  font-size: 2.5rem;
}
.features summary span {
  margin-right: 10px;
  font-size: 1.4rem;
  color: #ff7a62a6;
}
.feature-content {
  margin-top: 10px;
}
.feature-content img {
  display: block;
  margin: 0 auto;
  width: 100%;       
  max-width: 600px;  
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}
details[open] img {
  animation: fadeInImg 0.4s ease;
}

@keyframes fadeInImg {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}
.feature-content p {
  font-size: 0.95rem;
  color: #ccc;
}
.features p {
  color: #d3d3d3;
  font-size: 1.25rem;
  margin-top: 10px;
  font-weight: 100;
}
summary::-webkit-details-marker {
  display: none;
}
.features summary::after {
  content: "›";
  float: right;
  transition: transform 0.3s ease;
}
.features details[open] summary::after {
  transform: rotate(90deg);
}
.features summary::after {
  content: "›";
  margin-left: auto;
  transition: transform 0.3s ease;
}
/*------------------------footer-----------------------*/
.footer {
  background: linear-gradient(#252525, #080808);
  color: #ccc;
  padding-top: 10px;
  margin-top: 20px;
  border-top: 1px solid #2a2a2a;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  max-width: 900px;
  margin: auto;
  padding: 0 20px 0 20px;
  flex-wrap: wrap;
}
.footer-section {
  flex: 1;
  min-width: 150px;
}
.footer h3 {
  font-family: "Yuji Mai", serif;
  font-size: 2rem;
  color: #ff7a62a6;
  margin-bottom: 5px;
}
.footer h4 {
  margin-bottom: 20px;
  color: #fff;
}
.footer p,
.footer a {
  font-size: 0.9rem;
  color: #aaa;
  text-decoration: none;
  margin: 4px 0;
  display: block;
}
.footer a:hover {
  color: #ff7a62;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #2a2a2a;
  margin-top: 20px;
  padding: 15px;
  font-size: 0.8rem;
  color: #777;
}
/* --------reservation-form---modal----------- */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: linear-gradient(#252525, #080808);
  padding: 30px;
  border: 1px solid #3d3d3d;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  color: white;
  animation: fadeIn 0.3s ease;
}
.close-btn {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
}
.modal form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal input,
.modal textarea {
  padding: 8px;
  background: #141414;
  border: 1px solid #444;
  color: white;
}
.modal button {
  background: #ff7a62a6;
  border: none;
}
/*------------------------mobile design-----------------------*/
@media (max-width: 768px) {
  .banner img {
    content: url('img/door.jpg');
  }
  .banner-text h1 {
    font-size: 4rem;
  }
  .banner-text h2 {
    font-size: 2.5rem;
  }
  .banner-text p {
    font-size: 0.9rem;
  }
  button {
    font-size: 0.8rem;
    padding: 3px 6px;
    margin-bottom: 20px;
  }
  .quick-links {
    gap: 30px;
  }
  .quick-item span {
    font-size: 24px;
  }
  .quick-item p {
    font-size: 0.8rem;
  }
  .about {
    position: relative;
    flex-direction: column;
    text-align: left;
    overflow: hidden;
    padding: 5px 10px 20px 10px;
    margin: 10px 0;
  }
  .about img {
    width: 100%;
    display: block;
    border: none;
    border-radius: 0;
  }
  .about-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    padding: 24px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 85%);
    color: #ffffff;
    box-sizing: border-box;
    font-size: 1rem;
  }
  .carousel {
    margin: 0;
    padding: 15px 5px;
  }
  .carousel p {
    font-size: 1rem;
    padding: 0 30px 10px 30px;
  }
  .highlight-section {
    width: 89%;
   margin: 10px auto;
   padding: 20px;
  }
  .highlight-section summary {
  font-size: 1rem;
  font-weight: 400;
  }
  .highlight-section img {
    width: 100%;
    height: auto;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer {
    margin-top: 0;
  }
}
