@charset "utf-8";

@import url("./fonts.css");

#replit-badge-container, [data-replit-badge], .replit-ui-theme-root { display: none !important; }

*, ::before, ::after { box-sizing: border-box; margin: 0px; padding: 0px; }

html { scroll-behavior: smooth; }

:root { --red: #e02020; --red-dark: #b81818; --red-dim: rgba(224, 32, 32, .08); --text: #111111; --muted: #555555; --bg: #ffffff; --border: #ebebeb; --font-display: "Cormorant Garamond", Georgia, serif; --font-body: "DM Sans", system-ui, sans-serif; --content-w: 640px; }

body { background: var(--bg); color: var(--text); font-family: var(--font-body); -webkit-font-smoothing: antialiased; line-height: 1.6; }

.page { display: flex; flex-direction: column; min-height: 100vh; }

.navbar { position: sticky; top: 0px; z-index: 100; background: rgb(255, 255, 255); border-bottom: 3px solid var(--red); }

.navbar-inner { max-width: var(--content-w); margin: 0px auto; padding: 0px 24px; height: 64px; display: flex; align-items: center; }

.navbar-logo { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--text); letter-spacing: 0.03em; }

.hero-section { padding: 72px 24px 52px; text-align: center; }

.hero-headline { font-family: Montserrat, sans-serif; font-size: clamp(2.8rem, 8vw, 5.5rem); font-weight: 700; line-height: 1.05; letter-spacing: 0.01em; color: var(--text); max-width: var(--content-w); margin: 0px auto; }

.next-accent { position: relative; display: inline-block; }

.next-accent::after { content: ""; position: absolute; left: 0px; bottom: -6px; width: 100%; height: 4px; background: var(--red); border-radius: 2px; }

.divider { width: 100%; height: 2px; background: var(--border); }

.img-block { display: flex; flex-direction: column; align-items: center; gap: 28px; padding: 52px 24px; width: 100%; max-width: var(--content-w); margin: 0px auto; }

.divider { width: 100%; }

.block-img { display: block; width: 100%; height: auto; max-width: 100%; border-radius: 14px; image-rendering: auto; box-shadow: rgba(0, 0, 0, 0.14) 0px 8px 32px; object-fit: cover; }

.proof-label { font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--red); }

.body-text { font-size: 1.1rem; font-weight: 600; color: var(--text); line-height: 1.7; text-align: center; width: 100%; }

@keyframes btn-bounce { 
  0%, 100% { transform: translateY(0px); }
  45% { transform: translateY(-7px); }
  65% { transform: translateY(-3px); }
}

.btn-row { display: flex; justify-content: center; width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; width: 100%; }

.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; padding: 17px 36px; border-radius: 6px; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; cursor: pointer; animation: 1.8s ease-in-out 0s infinite normal none running btn-bounce; text-align: center; }

.btn:hover { animation-play-state: paused; transform: scale(1.04); }

.btn-red { background: var(--red); color: rgb(255, 255, 255); transition: background 0.15s, transform 0.15s; box-shadow: rgba(224, 32, 32, 0.35) 0px 4px 16px; }

.btn-red:hover { background: var(--red-dark); }

.tg-icon { width: 18px; height: 18px; margin-right: 9px; flex-shrink: 0; }

.booking-section { background: rgb(255, 245, 245); width: 100%; max-width: 100%; box-shadow: inset 0 2px 0 var(--border),inset 0 -2px 0 var(--border); }

.booking-section .img-block { max-width: var(--content-w); }

.footer { margin-top: auto; background: var(--red); padding: 44px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }

.footer-brand { font-family: Montserrat, sans-serif; font-size: 1.6rem; font-weight: 900; color: rgb(255, 255, 255); letter-spacing: 0.05em; }

.footer-copy { font-family: Montserrat, sans-serif; font-size: 0.74rem; font-weight: 400; color: rgba(255, 255, 255, 0.75); letter-spacing: 0.05em; }

@media (max-width: 600px) {
  .navbar-inner { padding: 0px 18px; }
  .navbar-logo { font-size: 1.6rem; }
  .hero-section { padding: 48px 18px 36px; }
  .img-block { padding: 40px 18px; gap: 22px; }
  .btn { width: 100%; padding: 17px 20px; font-size: 0.78rem; }
  .btn-group { flex-direction: column; }
  .body-text { font-size: 1rem; }
}

@media (min-width: 900px) {
  .hero-section { padding: 96px 24px 72px; }
  .img-block { padding: 64px 24px; gap: 36px; }
  .block-img { border-radius: 16px; }
}