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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: #fffff2;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  line-height: 1.5;
  color: #2e0000;
}

@font-face {
  font-family: "CustomFont";
  src:
    url("fonts/Winkle-Regular.otf") format("opentype"),
    url("fonts/Winkle-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.custom-heading {
  font-family: "CustomFont", Georgia, serif;
  line-height: 1.2;
  text-align: center;
}

.custom-heading .top {
  display: block;
  font-size: 7rem;
}

.custom-heading .bottom {
  display: block;
  font-size: 6rem;
}

@media (max-width: 992px) {
  .custom-heading .top {
    font-size: 5rem;
  }
  .custom-heading .bottom {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .custom-heading .top {
    font-size: 3.5rem;
  }
  .custom-heading .bottom {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .custom-heading .top {
    font-size: 2.8rem;
  }
  .custom-heading .bottom {
    font-size: 2.2rem;
  }
}

.header {
  padding: 0.9375em 5%;
  background-color: #fffff2;
  border-bottom: 1px solid rgba(212, 160, 160, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

@media (min-width: 1200px) {
  .header {
    padding: 0.9375em 10em;
  }
}

.mainLogo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.mainLogo img {
  height: 5em;
  width: auto;
  object-fit: contain;
}

.maps-link {
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2e0000;
  border: 0.125em solid #d4a0a0;
  border-radius: 2em;
  padding: 0.5em 1.2em;
  transition: all 0.3s ease;
}

.maps-link:hover {
  background-color: #d4a0a0;
  color: #fffff2;
  transform: translateY(-2px);
}

.nav-bar {
  display: flex;
  justify-content: center;
  gap: 2.5em;
  margin-top: 1.5em;
  padding: 0.75em 0;
  border-top: 0.2em solid #d4a0a0;
  border-bottom: 0.2em solid #d4a0a0;
}

.nav-link {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: #2e0000;
  padding: 0.5em 0;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #c47a7a;
  transform: translateY(-0.125em);
}

.instagram-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 5%;
  background-color: #fffff2;
  position: relative;
  overflow: hidden;
  text-align: center;
}

@media (min-width: 1200px) {
  .hero {
    padding: 4rem 10em;
  }
}

.hero-content {
  max-width: 800px;
  z-index: 2;
  margin: 0 auto;
}

.hero-content h1 {
  color: #2e0000;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  color: #2e0000;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background-color: #2e0000;
  color: #fffff2;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 3em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(46, 0, 0, 0.2);
  display: inline-block;
}

.cta-button:hover {
  background-color: #4a1a1a;
  transform: translateY(-2px);
}

.hero-accent {
  position: absolute;
  right: -5%;
  top: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(212, 160, 160, 0.1) 0%,
    rgba(212, 160, 160, 0) 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.info-section {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 5%;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fffff2;
}

.info-card {
  flex: 1;
  min-width: 220px;
  background: white;
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 160, 160, 0.2);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(46, 0, 0, 0.1);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  color: #2e0000;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.info-card p {
  color: #2e0000;
  font-size: 0.95rem;
}

.book-section {
  padding: 5rem 5%;
  background-color: #fffff2;
  margin: 0;
}

@media (min-width: 1200px) {
  .book-section {
    padding: 5rem 10em;
  }
}

.book-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 160, 160, 0.3);
}

.book-content {
  padding: 3rem;
  text-align: center;
}

.book-content h2 {
  font-size: 2.5rem;
  color: #2e0000;
  margin-bottom: 1rem;
  font-weight: 700;
}

.book-content p {
  font-size: 1.125rem;
  color: #2e0000;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.book-now-btn {
  background-color: #2e0000;
  color: #fffff2;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 3em;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  display: block;
  box-shadow: 0 4px 12px rgba(46, 0, 0, 0.3);
}

.book-now-btn:hover {
  background-color: #4a1a1a;
  color: #fffff2;
  transform: translateY(-2px);
}

.book-note {
  font-size: 0.875rem;
  color: #2e0000;
  margin-top: 1rem;
}

.footer {
  background-color: #2e0000;
  color: #e8d8c8;
  margin-top: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 5%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  min-width: 180px;
}

.footer-section h4 {
  color: #d4a0a0;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #d4c8b8;
}

.footer-section a {
  display: block;
  color: #d4c8b8;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #d4a0a0;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid rgba(212, 160, 160, 0.2);
  font-size: 0.8rem;
  color: #a08080;
}

@media (max-width: 768px) {
  .hero-content p {
    font-size: 1rem;
  }
  .nav-bar {
    gap: 1.5rem;
  }
  .book-content h2 {
    font-size: 1.75rem;
  }
  .mainLogo {
    flex-direction: column;
    text-align: center;
  }
  .info-card {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-bar {
    gap: 1rem;
  }
  .nav-link {
    font-size: 0.875rem;
  }
  .hero {
    padding: 2rem 1rem;
  }
}

/* Terms of Service */
.terms-modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.terms-modal-content {
  background-color: #fffff2;
  margin: 5% auto;
  padding: 2rem;
  width: 90%;
  max-width: 700px;
  max-height: 85vh;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 160, 160, 0.3);
  display: flex;
  flex-direction: column;
}

.terms-modal-content h2 {
  color: #2e0000;
  margin-bottom: 1rem;
}

.terms-close {
  color: #a08080;
  float: right;
  font-size: 1.75rem;
  font-weight: bold;
  cursor: pointer;
  align-self: flex-end;
  line-height: 1;
  margin-top: -0.5rem;
}

.terms-close:hover {
  color: #2e0000;
}

.terms-scroll {
  overflow-y: auto;
  padding-right: 0.5rem;
  flex: 1;
  max-height: 60vh;
}

.terms-scroll h3 {
  color: #2e0000;
  margin: 1.25rem 0 0.5rem;
  font-size: 1.1rem;
}

.terms-scroll h3:first-of-type {
  margin-top: 0;
}

.terms-scroll p {
  color: #3a1a1a;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.terms-accept-btn {
  background-color: #2e0000;
  color: #fffff2;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 3em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  width: 100%;
}

.terms-accept-btn:hover {
  background-color: #4a1a1a;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .terms-modal-content {
    margin: 10% auto;
    padding: 1.5rem;
    width: 95%;
    max-height: 90vh;
  }
}
