/* --------------------------------------------------
   GLOBAL PAGE STYLE
-------------------------------------------------- */
body {
  font-family: 'Poiret One', sans-serif;
  font-size: 1.2rem;
  margin: 0;
  background-color: #F4F0E6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
.indent {
  margin-left: 2em;   /* shifts the whole paragraph or bullet list */
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
.site-header {
  background: #86a277;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
  height: 90px;
}

/* LOGO */
.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 3em;
  max-width: 150px;
}

/* --------------------------------------------------
   COMPANY NAME BOX – CENTERED
-------------------------------------------------- */
.company-name {
  background-color: #F4F0E6;
  border: 2px solid #C7A76C;
  border-radius: 8px;
  padding: 6px 14px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;

  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.company-name .main-name {
  display: block;
  font-size: 2.4rem;
  letter-spacing: 0.25rem;
}

.company-name .sub-name {
  display: block;
  font-size: 1rem;
  margin-top: 2px;
}

/* Responsive scaling */
@media (max-width: 768px) {
  .company-name .main-name {
    font-size: 1.8rem;
  }
  .company-name .sub-name {
    font-size: 0.85rem;
  }
}

/* --------------------------------------------------
   HAMBURGER MENU
-------------------------------------------------- */
.hamburger {
  width: 32px;
  height: 24px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* --------------------------------------------------
   NAVIGATION
-------------------------------------------------- */

/* Desktop nav */
.nav-menu {
  display: flex;
  gap: 15px;
}

.nav-menu a {
  color: #2f3a28;
  font-weight: bold;
}

.nav-menu a:hover {
  text-decoration: underline;
}

/* Mobile slide-in nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 140px;
  height: 100vh;
  background: #86a277;
  padding: 90px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
  transition: 0.35s ease;
  z-index: 1001;
}

.mobile-nav a {
  color: white;
  font-weight: bold;
  font-size: 1.15rem;
}

.mobile-nav.open {
  transform: translateX(0);
}

/* Mobile nav font override */
.mobile-nav,
.mobile-nav * {
  font-family: 'Poiret One', sans-serif !important;
}

/* --------------------------------------------------
   RESPONSIVE BEHAVIOR
-------------------------------------------------- */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu { display: none; }
}

/* --------------------------------------------------
   MAIN CONTENT
-------------------------------------------------- */
main.content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.6;
}

main.content img {
  margin: 20px auto;
}

main.content a {
  color: #86a277;
  text-decoration: underline;
}

main.content a.circle-button {
  color: black !important;   /* force the gold text */
  text-decoration: none !important;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.site-footer {
  background-color: #86a277;
  padding: 30px 20px;
  text-align: center;
  margin-top: auto;
}

.site-footer p {
  color: white;
  margin: 0;
}

.site-footer .social-icons img {
  width: 30px;
  height: 30px;
}

/* Center the booking button wrapper */
.booking-button-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.circle-button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 220px;           /* size of circle */
  height: 220px;
  border-radius: 50%;     /* perfect circle */

  border: 2px solid #C7A76C;   /* gold outline */
  background-color: #86a277;   /* sage green background */

  color: black;         /* gold text */
  font-size: 1.4rem;
  font-family: 'Poiret One', sans-serif;
  text-decoration: none;

  margin: 40px auto;      /* centers it on page */
  transition: 0.3s ease;
}

.circle-button:hover {
  transform: scale(1.05);
  border-color: #e2c890;
  color: #e2c890;
}