:root{
--paper: #f2ede2;   /* warm parchment */
--sage:  #f2ede2;   /* warm light sage */

  --ink:   #2f3b35;
  --muted: #3f5f4c;
  --forest:#1f3d2b;
  --line:  rgba(31, 61, 43, 0.16);
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

/* SINGLE CARD */
.container{
  max-width: 1000px;
  margin: 64px auto;
  padding: 60px 70px;
  background: var(--sage);
  border-radius: 20px;
  border: 1px solid rgba(31,61,43,0.10);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
  text-align: center;
}

/* LOGO + TAGLINE */
.logo-main{
  width: 260px;
  margin: 0 auto 18px;
  display: block;
}

.tagline{
  margin: 8px auto 24px;
  font-size: 18px;
  font-style: italic;
  color: var(--muted);
}

/* TYPOGRAPHY */
h2{
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--forest);
}

p{
  margin: 0 auto 18px;
  max-width: 620px;
  line-height: 1.65;
  font-size: 16.5px;
}

.visually-hidden{
  position: absolute;
  left: -9999px;
}

/* ABOUT */
.about{
  margin-top: 10px;
}

/* FEATURES */
.features{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 26px auto 18px;
}

.feature{
  background: rgba(255,255,255,0.55);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(31,61,43,0.10);
  text-align: left;
}

.feature h3{
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--forest);
}

.feature p{
  margin: 0;
  font-size: 14.5px;
}

/* TESTIMONIAL IMAGE */
.testimonial-image{
  display: block;
  max-width: 560px;
  width: 100%;
  margin: 26px auto;
  padding: 16px;
  background: rgba(255,255,255,0.5);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* DIVIDER */
.divider{
  border: none;
  height: 1px;
  background: var(--line);
  margin: 24px auto 18px;
  max-width: 520px;
}

/* BUTTON */
.button{
  display: inline-block;
  margin: 16px auto 18px;
  padding: 14px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg,#2f6b4f,#1f3d2b);
  color: #f5f7f4;
  text-decoration: none;
  font-weight: 600;
}

.button:hover{ opacity: 0.92; }

/* CONTACT */
.contact-line{
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 15.5px;
}

.contact-line a{
  color: inherit;
  text-decoration: none;
}

.contact-line a:hover{
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 720px){
  .container{
    margin: 40px 14px;
    padding: 34px 20px;
  }
  .features{
    grid-template-columns: 1fr;
  }
  .logo-main{
    width: 220px;
  }
}.testimonial-image{
  display: block;
  max-width: 560px;
  width: 100%;
  margin: 26px auto;
  padding: 0;                 /* remove inner box feel */
  background: transparent;    /* same as page */
  border-radius: 14px;
  box-shadow: none;            /* optional – cleaner */
}
.bullets{
  max-width: 620px;
  margin: 14px auto 0;
  padding-left: 18px;
  text-align: left;
}
.bullets li{
  margin: 8px 0;
  line-height: 1.6;
}
.small-heading{
  margin: 28px 0 12px;
  font-size: 18px;
  color: var(--forest);
}
.testimonial-image{
  display: block;
  max-width: 560px;
  width: 100%;
  margin: 26px auto;
  border-radius: 14px;
  border: none;
  box-shadow: none;
}
}
p{ font-size: 17px; }
.section-label{
  margin: 30px auto 14px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.8;
}
.soft-divider{
  border: none;
  height: 1px;
  background: rgba(31, 61, 43, 0.12);
  max-width: 420px;
  margin: 24px auto 10px;
}
.locations{
  margin: 18px auto 12px;
  font-size: 15.5px;
  color: var(--muted);
}
.reserve-box{
  display: block;
  max-width: 520px;
  margin: 26px auto 10px;
  padding: 18px 20px;
  text-align: center;
  text-decoration: none;
  background: rgba(255,255,255,0.55);
  border-radius: 16px;
  border: 1px solid rgba(31,61,43,0.14);
  color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.reserve-box strong{
  display: block;
  font-size: 17px;
  color: var(--forest);
  margin-bottom: 4px;
}

.reserve-box span{
  font-size: 14.5px;
  color: var(--muted);
}

.reserve-box:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}
/* Clickable location boxes */
.locations-boxes{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 520px;
  margin: 26px auto 18px;
}

.location-box{
  display: block;
  padding: 18px 16px;
  text-align: center;
  text-decoration: none;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(31,61,43,0.14);
  border-radius: 16px;
  color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.location-box strong{
  display: block;
  font-size: 16.5px;
  color: var(--forest);
  margin-bottom: 4px;
}

.location-box span{
  font-size: 14.5px;
  color: var(--muted);
}

.location-box:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

/* Mobile */
@media (max-width: 600px){
  .locations-boxes{
    grid-template-columns: 1fr;
  }
}
.logo-main {
  width: 200px;
  margin: 0 auto 36px; /* adds space below logo */
  display: block;
}
.logo-main {
  width: min(300px, 80%);
  margin: 0 auto 32px;
  display: block;
}
.location-box {
  padding: 16px 26px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;   /* keeps text on one line */
  min-width: 240px;      /* forces wider boxes */
  text-align: center;
}
.location-options {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap; /* still safe on mobile */
}
.locations-boxes{
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: stretch;
  max-width: 720px;
  margin: 26px auto 18px;
}

.location-box{
  flex: 1;                 /* each box takes equal width */
  min-width: 0;            /* allows text to behave properly */
  padding: 16px 14px;
  text-align: center;
  text-decoration: none;

  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(31,61,43,0.14);
  border-radius: 16px;
  color: var(--ink);
}

.location-box strong{
  display: block;
  font-size: 14px;         /* smaller so it fits */
  color: var(--forest);
  white-space: nowrap;     /* keep on one line */
  overflow: hidden;        /* prevent spill */
  text-overflow: ellipsis; /* adds … if somehow still too long */
}

.location-box span{
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mobile: stack them */
@media (max-width: 640px){
  .locations-boxes{
    flex-direction: column;
  }
}
.booking {
  margin: 40px auto 20px;
  max-width: 480px;
  text-align: left;
}

.booking .small-heading {
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6a7f6f;
  margin-bottom: 20px;
}

.booking form {
  display: grid;
  gap: 14px;
}

.booking label {
  font-size: 14px;
  color: #2f3b35;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.booking input,
.booking select,
.booking textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.15);
  font-family: inherit;
  font-size: 14px;
}

.booking button {
  margin-top: 10px;
  align-self: center;
}
