
/* =========================
   Base Styles
========================= */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  font-family: 'Albert Sans', sans-serif;
  color: #4c4637;
}

p {
  line-height: 1.6;
}

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

/* =========================
   Header & Navigation
========================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #4a5d23;
  color: #daded8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-sizing: border-box;
  padding: 0 4rem;
}

.site-logo {
  max-width: 120px;
}

nav {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  padding-left: 10rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  font-size: 18px;
}

nav ul li a {
  color: #daded8;
  text-decoration: none;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Desktop-only nav */
.desktop-nav {
  display: flex;
}

/* Mobile menu toggle */
.menu {
  display: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: white;
  text-decoration: underline;
}

/* Dropdown menu (mobile) */
.dropdown {
  display: none;
  flex-direction: column;
  text-align: center;
  position: absolute;
  left: 0;
  width: 100%;
  gap: 2rem;
  background-color: #4a5d23;
  padding: 2rem 0;
  z-index: 2000;
}

.dropdown a {
  color: #daded8;
  text-decoration: none;
  font-size: 1rem;
}

.dropdown.show {
  display: flex;
}

/* =========================
   Buttons
========================= */
.book-btn, .book-btn-home, .GV-btn {
  color: #daded8;
  font-weight: bolder;
  background: #4c4637;
  border: none;
  border-radius: 115px;
  cursor: pointer;
  text-decoration: none;
}

.book-btn {
  font-size: 18px;
  padding: 0.75rem 1.5rem;
  margin-left: 10rem;
}

.book-btn-home, .GV-btn {
  font-size: 18px;
  padding: 1rem 3rem;
  margin-left: 0;
}

.book-btn:hover, .book-btn-home:hover, .GV-btn:hover {
  background: #807966;
  text-decoration: underline;
}

/**==================
    MAIN (gift-vouchers page)
    ===================**/
.GVsection1 {
    margin: 0 auto;
    font-size: 1.5rem;
    padding-top: 8rem;
    max-width: 1200px;
    padding-left: 20%;
    padding-right: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.GV-heading{
    margin-bottom: 0;
}

 .GV-flavour-text{
    margin-top:0;
 }

.GVsection2 {
    margin: 0 auto;
    font-size: 24px;
    max-width: 1200px;
    padding-left: 20%;
    padding-right: 20%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20%;

}
.options-heading{
    margin-bottom: 0;
}
.options-text {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* vertical spacing between heading, text, and button */
  max-width: 400px;
  min-width: 400px;
}

.GV-btn {
    text-align: center;
    color: #daded8;
    font-size: 18px;
    font-weight: bolder;
    background: #4c4637;
    padding: 1rem 3rem;
    border: none;
    border-radius: 115px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}



.voucher {
    padding-top: 2rem;
    height: 40vh;
    width: 50vh;
}


.GVsection3 {
  font-size: 24px;
  width: 100%;
  background-color: #98a281;
  margin: 2% 0;
}

/* shared text container */
.GVsection3-text {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2% 20%;
}

.GVsection4 {
    margin: 2% auto;
    font-size: 24px;
    padding: 2% 20%;
    max-width: 1200px;
    width: 100%;
}


 .note{
    padding-bottom: 3rem;
}

/* =========================
   Footer
========================= */
footer {
  background-color: #4a5d23;
  color: #daded8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 2rem;
}

.footer-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.footer-text {
  padding-top: 1rem;
}

.map-link, .phone-number, .policy-link a {
  text-decoration: none;
  color: #daded8;
}

.map-link:hover, .phone-number:hover, .policy-link a:hover {
  text-decoration: underline;
}

.facebook-logo, .instagram-logo {
  height: 50px;
}

/* =========================
   Booking Modal
========================= */
.booking-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.booking-content {
  position: relative;
  width: 90%;
  max-width: 600px;
  height: 80%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.close-button {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: #2b361c;
  color: #fefae3;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10;
}

/* Tablets <= 1024px */
@media (max-width: 1024px) {
  .site-logo {
    max-width: 100px;
  }

  nav {
    padding-left: 2rem;
  }

  nav ul {
    font-size: 12px;
  }

  .book-btn {
    font-size: 16px;
    padding: 0.6rem 1.2rem;
    margin-left: 2rem;
    display: block;
  }
    .GVsection1, 
  .GVsection2,
  .GVsection3,
  .GVsection4 {
    padding-left: 5%;
    padding-right: 5%;
  }

    .GVsection3-text {
    padding: 5% 5%;
  }

  .GVsection4-text {
    padding: 5% 5%;
  }
}

/*=========================
    mobile specific styling
=========================== */

@media (max-width: 768px) {

  /* Header */
  header {
    position: relative;
    flex-direction: column;
    height: 100px;
  }

    .book-btn {
    display: none;
    margin: 0;
    width: auto;
  }

  .site-logo {
    max-width: 100px;
    margin-top: 1rem;
    padding-bottom: 1rem;
  }

  /* Hide desktop nav, show menu */
  .desktop-nav {
    display: none;
  }
  .menu {
    display: block;
  }

  nav {
    padding-left: 2rem;
    width: 100%;
    position: relative;
  }

  .dropdown {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: absolute; /* Change to absolute to make it non-sticky */
    left: 0;
    background-color: #4a5d23;
    width: 100%;
    z-index: 2000;
    padding: 0;
    margin: 0;
    padding-bottom: 2rem;
    padding-top: 2rem;
  }


  .dropdown.show {
    display: flex;
  }

  /*MAIN*/

  .GVsection1{
    padding-top: 0;
  }

  .GVsection2 {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .voucher {
    width: 80vw;
    height: auto;
    padding-top: 0;
    padding-bottom: 10%;
  }

  .options-heading{
    margin-top: 0;
  }
  .options-text {
    max-width: 100%;
    text-align: center;
    font-size: 1.2rem;
  }

  .GV-btn {
    align-self: center;
    padding: 0.8rem 2rem;
    font-size: 16px;
  }

  .GVsection3 {
    font-size: 1.2rem;
  }

  .GVsection3 p {
    font-size: 1.2rem;
  }
  .description{
    
    padding-right: 10%;
  }
  .GVsection4{
    font-size: 1.2rem;
  }

  .GV-heading {
    font-size: 2rem;

  }

  .GV-flavour-text {
    font-size: 1.2rem;
  }

   /* Footer mobile */
  footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    font-size: 1.5vh;
  }

  .footer-icons {
    justify-content: center;
  }

  .container {
    min-height: auto;
  }
}

