body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}
.navbar {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f26a8d;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}
.hero {
  background: linear-gradient(to right, #f26a8d, #fbc2eb);
  color: #fff;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-text {
  max-width: 700px;
  padding: 2rem;
}
.hero h1 {
  font-size: 3rem;
}
.btn {
  background: #fff;
  color: #f26a8d;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  margin-top: 20px;
  display: inline-block;
}
.book-btn {
  background: linear-gradient(90deg, #f26a8d 0%, #fbc2eb 100%);
  color: #fff;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  margin-top: 20px;
  display: inline-block;
  box-shadow: 0 4px 18px rgb(242 106 141 / 0.13);
  font-size: 1.12rem;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: transform 0.12s, box-shadow 0.3s, background 0.35s;
  cursor: pointer;
  outline: none;
  animation: cta-pulse 1.7s infinite alternate;
}
.book-btn::after {
  content: "";
  display: block;
  position: absolute;
  left: -60%;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgb(255 255 255 / 0.3);
  transform: skewX(-18deg);
  transition: left 0.42s cubic-bezier(0.35, 1.4, 0.68, 1.15);
}
.book-btn:focus,
.book-btn:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 8px 32px rgb(242 106 141 / 0.28);
  background: linear-gradient(90deg, #fbc2eb 0%, #f26a8d 100%);
}
.book-btn:hover::after,
.book-btn:focus::after {
  left: 110%;
}
.book-btn,
.book-btn:visited,
.book-btn:active,
.book-btn:focus {
  background: linear-gradient(90deg, #f26a8d 0%, #fbc2eb 100%);
  color: #fff !important;
  text-decoration: none !important;
  border: none;
  outline: none;
  box-shadow: 0 4px 18px rgb(242 106 141 / 0.13);
}
.book-btn:hover,
.book-btn:focus {
  color: #fff !important;
  text-decoration: none !important;
  background: linear-gradient(90deg, #fbc2eb 0%, #f26a8d 100%);
}
@keyframes cta-pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(242 106 141 / 0.22);
  }
  100% {
    box-shadow: 0 0 0 14px #fff0;
  }
}
.section {
  padding: 60px 20px;
  text-align: center;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.section.light {
  background: #fff;
}
.section.dark {
  background: #f9f9f9;
}
.service-grid,
.menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.card,
.menu-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
  font-weight: 600;
}
.menu-item span {
  float: right;
  color: #f26a8d;
}
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}
footer a {
  color: #a855f7;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
footer .socials a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.5rem;
}
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact-form button {
  background-color: #f26a8d;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
}
.contact-form button:hover {
  background-color: #d25576;
}
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .service-grid,
  .menu-grid {
    flex-direction: column;
    align-items: center;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
.cta-banner {
  margin-top: 20px;
  padding: 20px;
  background: #fff;
  color: #f26a8d;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 700;
}
.cta-banner .btn {
  margin-top: 10px;
  display: inline-block;
}
.sticky-book-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #f26a8d;
  color: #fff;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.2);
  z-index: 999;
  transition: background-color 0.3s;
}
.sticky-book-btn:hover {
  background-color: #d94c76;
}
.photo-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px 0;
}
.photo-showcase img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
}
.hero {
  background: linear-gradient(to right, #f26a8d, #fbc2eb);
  color: #fff;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background 0.4s;
}
body.night .hero {
  background: linear-gradient(to right, #4e4376, #2b5876);
  color: #fff;
}
.card,
.menu-item {
  background: #fff;
  color: #222;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}
body.night .card,
body.night .menu-item {
  background: #292929;
  color: #eee;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.24);
}
.section.light {
  background: #fff;
  color: #222;
  transition: background 0.3s, color 0.3s;
}
.section.dark {
  background: #f9f9f9;
  color: #333;
  transition: background 0.3s, color 0.3s;
}
body.night .section.light {
  background: #333;
  color: #f0f0f0;
}
body.night .section.dark {
  background: #191919;
  color: #f0f0f0;
}
body.night footer {
  background: #222;
  color: #fff;
}
.toggle-btn {
  width: 48px;
  height: 48px;
  font-size: 1.7rem;
  margin-left: 16px;
  border-radius: 16px;
  transition: width 0.3s cubic-bezier(0.4, 2, 0.6, 1),
    height 0.3s cubic-bezier(0.4, 2, 0.6, 1),
    font-size 0.3s cubic-bezier(0.4, 2, 0.6, 1), border-radius 0.3s;
}
.logo-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f8f8;
  padding: 32px 0;
  gap: 1.2rem;
  text-align: center;
  transition: background 0.4s, padding 0.3s cubic-bezier(0.4, 2, 0.6, 1),
    box-shadow 0.3s;
  box-shadow: none;
}
body.night .logo-banner {
  background: #333;
}
.logo-centered {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s cubic-bezier(0.4, 2, 0.6, 1);
}
.toggle-btn {
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  margin-left: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e5e5e5;
  background: #fff;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.07);
  cursor: pointer;
  transition: width 0.3s cubic-bezier(0.4, 2, 0.6, 1),
    height 0.3s cubic-bezier(0.4, 2, 0.6, 1),
    font-size 0.3s cubic-bezier(0.4, 2, 0.6, 1), border-radius 0.3s,
    background 0.3s, border-color 0.3s;
  position: relative;
}
body.night .toggle-btn {
  background: #444;
  border-color: #555;
}
.toggle-btn:hover,
.toggle-btn:focus {
  border-color: #f26a8d;
  outline: none;
}
.toggle-btn .icon {
  position: absolute;
  font-size: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.toggle-btn .sun {
  left: 50%;
  transform: translateX(-50%);
}
.toggle-btn .moon {
  left: 50%;
  transform: translateX(-50%);
}
body:not(.night) .toggle-btn .sun {
  opacity: 1;
  pointer-events: auto;
}
body.night .toggle-btn .moon {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 600px) {
  .logo-banner {
    flex-direction: row;
    padding: 10px 0;
    gap: 0.7rem;
  }
  .toggle-btn {
    font-size: 0.95rem;
    margin-left: 4px;
    border-radius: 7px;
  }
}
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}
