/* Font Faces */
@font-face {
  font-family: "Simula";
  src: url("fonts/simula.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Variables */
:root {
  --color-bg: #f2f0e9;
  --color-text: #212121;
  --color-primary: #e60000;
  --color-border: #dcd8cd;
  --font-body:
    "Lexend", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  --font-title: "Simula", Georgia, serif;
  --font-mono:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Header */
.site-header {
  padding: 24px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  color: var(--color-primary);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  color: #707070;
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--font-mono);
  transition: color 0.2s;
}

.nav-item:hover {
  color: var(--color-text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s,
    opacity 0.2s,
    background-color 0.2s;
  border-radius: 6px;
}

.btn-sm {
  padding: 10px 16px;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 16px 24px;
  font-size: 1.15rem;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #cc0000;
}

.btn-secondary {
  background-color: white;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.btn-secondary:hover {
  background-color: #fbfaf8;
}

/* Hero Section */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 800px;
}

.whats-new {
  font-family: var(--font-mono);
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-bottom: 40px;
  display: inline-block;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.hero-text {
  font-family: var(
    --font-mono
  ); /* Using mono here to replicate the distinct typewriter feel of the screenshot's subtitle */
  font-size: 1.125rem;
  color: #5d5d5d;
  margin-bottom: 48px;
  line-height: 1.6;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 500px;
  margin-bottom: 24px;
}

.no-credit-card {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #707070;
}

/* Marquee Section */
.marquee-section {
  width: 100%;
  padding: 60px 0;
  overflow: hidden;
}

.marquee-title {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #707070;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.marquee-container {
  display: flex;
  overflow: hidden;
  position: relative;
  gap: 40px;
}

.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

.marquee-content {
  display: flex;
  gap: 80px;
  padding-right: 40px;
  flex-shrink: 0;
  min-width: 100%;
  justify-content: flex-start;
  animation: scroll 25s linear infinite;
}

.brand {
  font-family: var(--font-title);
  font-size: 2rem;
  color: #a8a497;
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.2s;
}

.brand:hover {
  color: var(--color-text);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 40px));
  }
}

/* Footer Section */
.site-footer {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid var(--color-border);
}

.footer-container {
  display: flex;
  gap: 24px;
}

.footer-link {
  font-family: var(--font-mono);
  color: #707070;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--color-text);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-text {
    font-size: 1rem;
  }
  .hide-mobile {
    display: none;
  }
}

/* Booking Page Specific Styles */
.booking-main {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking-page-section {
  border-top: none;
  background: transparent;
  padding-top: 20px;
}

.booking-footer {
  margin-top: auto;
}
.booking-section {
  width: 100%;
  padding: 80px 0 100px 0;
  border-top: 1px solid var(--color-border);
  background-color: white;
}

.booking-container {
  max-width: 600px;
}

.booking-title {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 12px;
  text-align: center;
}

.booking-text {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: #707070;
  margin-bottom: 48px;
  text-align: center;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  gap: 24px;
}

.form-row > .form-group {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--color-text);
}

.form-group input,
.form-group select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background-color: var(--color-bg);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  background-color: white;
}

.form-group input::placeholder {
  color: #a8a497;
}

.booking-form .btn {
  margin-top: 16px;
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 24px;
  }
  .booking-title {
    font-size: 2.25rem;
    text-align: left;
  }
  .booking-text {
    text-align: left;
  }
}
