* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f6efe6;
  color: #2b1b12;
}

.header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 86%;
  padding: 18px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(74, 45, 29, 0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  z-index: 100;
  box-shadow: 0 20px 60px rgba(43, 27, 18, 0.25);
}

.logo {
  text-decoration: none;
  color: #fff7ed;
  font-size: 1.6rem;
  font-weight: 700;
}

.logo span {
  color: #d9a05b;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: #fff7ed;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.3s;
}

.nav a:hover {
  color: #d9a05b;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 150px 8% 80px;
  gap: 60px;
  background:
    radial-gradient(circle at top left, rgba(217,160,91,0.25), transparent 35%),
    linear-gradient(135deg, #fff8ef 0%, #ead8c3 100%);
}

.tag,
.section-title span,
.about-text span {
  color: #9b5f2b;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  margin: 22px 0;
  color: #2b1b12;
}

.desc {
  color: #6d5546;
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 34px;
}

.btn {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.35s ease;
  transform: scale(1.1);
}

.primary {
  background: #5a3522;
  color: #fff7ed;
  box-shadow: 0 16px 35px rgba(90, 53, 34, 0.28);
}

.secondary {
  border: 1px solid #5a3522;
  color: #5a3522;
}

.btn:hover {
  transform: translateY(-5px);
}

.hero-card {
  position: relative;
  height: 610px;
  border-radius: 220px 220px 35px 35px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(43, 27, 18, 0.35);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-box {
  position: absolute;
  left: 35px;
  bottom: 35px;
  background: rgba(255, 248, 239, 0.86);
  backdrop-filter: blur(14px);
  padding: 22px 28px;
  border-radius: 25px;
  box-shadow: 0 18px 40px rgba(43, 27, 18, 0.25);
}

.floating-box span {
  color: #9b5f2b;
  font-size: 0.8rem;
  font-weight: 700;
}

.floating-box h3 {
  margin: 6px 0;
  font-size: 1.4rem;
}

.floating-box p {
  color: #5a3522;
  font-weight: 800;
}

section {
  padding: 100px 8%;
}

.section-title {
  text-align: center;
  margin-bottom: 55px;
}

.section-title h2,
.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  margin-top: 12px;
  color: #2b1b12;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.item {
  background: #fff8ef;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(43, 27, 18, 0.12);
  transition: 0.35s;
}

.item:hover {
  transform: translateY(-12px);
}

.item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.item div {
  padding: 24px;
}

.item h3 {
  font-size: 1.25rem;
  color: #2b1b12;
}

.item p {
  color: #7a6253;
  margin: 10px 0 16px;
  line-height: 1.6;
}

.item strong {
  color: #9b5f2b;
  font-size: 1.2rem;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
  background: #ead8c3;
}

.about-img {
  height: 560px;
  border-radius: 35px;
  background: url("https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=900&q=80") center/cover;
  box-shadow: 0 35px 80px rgba(43, 27, 18, 0.28);
}

.about-text p {
  color: #6d5546;
  line-height: 1.9;
  margin: 24px 0 34px;
  max-width: 620px;
}

.reservation {
  background:
    linear-gradient(rgba(43, 27, 18, 0.72), rgba(43, 27, 18, 0.78)),
    url("https://images.unsplash.com/photo-1521017432531-fbd92d768814?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
}

.reservation .section-title h2,
.reservation .section-title span {
  color: #fff8ef;
}

.booking-form {
  max-width: 900px;
  margin: auto;
  padding: 38px;
  border-radius: 34px;
  background: rgba(255, 248, 239, 0.12);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.2);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(43, 27, 18, 0.55);
  color: #fff8ef;
  outline: none;
  font-size: 1rem;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #d8c7b7;
}

.booking-form textarea {
  grid-column: span 2;
  min-height: 130px;
  resize: none;
}

.booking-form button {
  grid-column: span 2;
  padding: 18px;
  border: none;
  border-radius: 40px;
  background: #d9a05b;
  color: #2b1b12;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.35s;
}

.booking-form button:hover {
  background: #fff8ef;
  transform: translateY(-4px);
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 32px 8%;
  background: #2b1b12;
  color: #d8c7b7;
}

footer p {
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .header {
    flex-direction: column;
    gap: 14px;
    border-radius: 28px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero,
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .desc,
  .about-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-card {
    height: 460px;
    border-radius: 45px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-form textarea,
  .booking-form button {
    grid-column: span 1;
  }
}

@media (max-width: 520px) {
  .header {
    top: 10px;
    width: 94%;
    padding: 16px;
  }

  .logo {
    font-size: 1.35rem;
  }

  .nav a {
    font-size: 0.85rem;
  }

  .hero {
    padding-top: 190px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  section {
    padding: 70px 5%;
  }
}
.footer {
  background: #2b1b12;
  color: #fff7ed;
  padding: 70px 8% 25px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.footer-brand h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.footer-brand span {
  color: #d9a05b;
}

.footer-brand p {
  color: #d8c7b7;
  line-height: 1.8;
  max-width: 300px;
}

.footer-column h3 {
  color: #d9a05b;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.footer-column p,
.footer-column a {
  color: #d8c7b7;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #d9a05b;
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
}

.footer-bottom p {
  color: #bfae9f;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: auto;
  }

  .footer-column a:hover {
    transform: none;
  }
}
.footer-column:last-child {
  text-align: center;
}

.footer-column:last-child {
    text-align: center;
}

.footer-column:last-child {
    text-align: center;
}

.footer-column:last-child a {
    display: block;
    margin: 10px 0;
}
.social-column {
  text-align: center;
}

.social-column a {
  display: block;
  margin: 10px 0;
  color: #f2d2a2;
}
.footer-bottom {
    width: 100%;
    background: #d8b07a;
    margin-top: 40px;
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
}

.footer-bottom p {
    color: #3e2417;
    margin: 0;
    font-weight: 700;
}
.booking-form button,
.btn {
  box-shadow: 0 0 25px rgba(216, 176, 122, 0.35);
}

.booking-form button:hover,
.btn:hover {
  box-shadow: 0 0 40px rgba(216, 176, 122, 0.65);
  transform: translateY(-3px);
}
.loader {
  position: fixed;
  inset: 0;
  background: #2b1b12;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  animation: hideLoader 1.8s forwards;
}

.cup {
  width: 55px;
  height: 55px;
  border: 5px solid #d8b07a;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes hideLoader {
  0%, 75% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.header {
  transition: 0.35s ease;
}

.header.scrolled {
  top: 10px;
  padding: 12px 32px;
  background: rgba(74, 45, 29, 0.92);
  box-shadow: 0 18px 45px rgba(43, 27, 18, 0.35);
}