@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Great+Vibes&display=swap');

body {
  margin: 0;
  font-family: Georgia, serif;
  background-color: #000000c8;
  color: #ffffff;
}

.logo img {
  width: 105px;
  height: auto;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 60px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #111111;
  font-size: 20px;
  letter-spacing: 1.5px;
  font-weight: bold;

  padding: 16px 0;
  display: inline-block;

}

.nav-links a:hover {
  color: #c9b28c;
}


html, body {
  margin: 0;
  padding: 0;
}

.hero {
  min-height: 100vh;
  position: relative;
  padding-top: 120px;
  
  box-sizing: border-box;
}

.hero-text {
  text-align: center;
  margin-left: 60px;
  margin-top: 100px;
  max-width: 370px;
  color: #111111;

  background: rgba(243, 234, 220, 0.78);
  padding: 22px 24px;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .hero-text {
    margin-left: 25px;
    margin-right: 25px;
    margin-top: 100px;
    background: rgba(243, 234, 220, 0.9);
  }
}


.hero-text h1 {
  font-size: 40px;
  margin: 0;
  letter-spacing: 2px;
  text-align: center;
}

.hero-text h2 {
  font-size: 28px;
  font-style: italic;
  font-weight: bold;
  text-align: center;
  margin: 8px 0 18px;
}


.hero-text h3 {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  margin: 8px 0 18px;
}


.hero-text p {
  line-height: 1.6;
  font-size: 16px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 26px;
  background-color: #111111;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: #c9b28c;
  color: #111111;
}
.site-logo {
  position: absolute;
  top: 30px;
  left: 60px;

  font-family: 'Great Vibes', cursive;
  font-size: 32px;
  color: #111;
}


.bg-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: transform 0.1s linear;
}

html {
  scroll-behavior: smooth;
}

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 70%;
  margin-top: -148.2px;
  z-index: 2;

  display: flex;
  gap: 40px;
  justify-content: flex-start;
  align-items: center;

  padding: 20px 40px;
  background: transparent;

  overflow: hidden;
}

.nav-paper {
  position: absolute;
  top: -20px;
  left: 10px;
  width: 780px;
  height: 190px;
  object-fit: fill;
  z-index: 1;
  pointer-events: none;
  transform: scaleX(-1);
}

.nav-paper2 {
  position: absolute;
  top: -20px;
  left: 10px;
  width: 350px;
  height: 190px;
  object-fit: fill;
  z-index: -1;
  pointer-events: none;
  transform: scaleX(-1);
}

.logo {
  position: relative;
  z-index: 2;
}
.nav-links {
  position: relative;
  z-index: 3;
}

.menu-btn {
  display: none;
  margin-left: auto;
  background: transparent;
  color: #000000;
  border: none;
  font-size: 28px;
  padding: 8px 24px;
  cursor: pointer;
  position: relative;
  top: -16px;

}

@media (max-width: 768px) {
  .navbar {
    margin-top: -120px;
    justify-content: space-between;
    padding: 5px 25px;
    min-height: 110px;
    overflow: visible;
    width: 85%;
  }

  .logo img {
    width: 90px;
  }

  .menu-btn {
    display: block;
    position: relative;
    z-index: 3;
    left: 5px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 65px;
    right: 25px;

    flex-direction: column;
    gap: 10px;

    background: rgba(243, 234, 220, 0.95);
    padding: 18px 24px;
    border-radius: 8px;
    z-index: 2;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    font-size: 18px;
    padding: 8px 0;
  }

  .nav-paper {
    width: 95%;
    height: 140px;
  }

  .nav-paper2 {
    top: -35px;
    height: 200px;
  }

}

@media (max-width: 768px) {
  .hero {
    height: 100svh;
    min-height: 100svh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    box-sizing: border-box;
  }


  .bg-img {
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* important for phone */
  }

  .hero-text {
      max-width: 80%;
      margin: 0 auto;
      padding: 24px 10px;

      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transform: translateY(50%);

  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text h2 {
    font-size: 28px;
    margin: 8px 0 18px;
  }

  .hero-text h3 {
    font-size: 18px;
  }

  .hero-subtext {
    font-size: 16px;
  }
}


.back-btn {
  position: relative;
  z-index: 2;

  margin-right: auto;


  border: none;
  border-radius: 6px;

  background-color: rgba(243, 234, 220, 0.9);
  color: #111111;

  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;

  cursor: pointer;
  transition: 0.25s ease;
  padding: 8px 16px;

  
}

.back-btn:hover {
  background-color: #c9b28c;
  transform: translateY(-2px);
}


.booking-container {
    position: absolute;
    bottom: 20px;
    right: 30px;
    gap: 2px;
    text-align: center;
    width: 285px;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 16px 28px 16px 50px;
    background: rgba(224, 203, 182, 0.95);
    border: 3px solid #b89d84;

    box-shadow: inset 0 0 0 1px #000;

    color: #ffffff;
    text-decoration: none;

    font-family: 'Playfair Display', serif;
    font-size: 30px;
    letter-spacing: 3px;

    transition: 0.3s ease;
}

.book-btn img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.book-btn:hover {
    background: #d6bda4;
    transform: translateY(-2px);
}

.book-subtitle {
    margin-top: 5px;
    margin-bottom: 5px;
    font-family: 'Great Vibes', bold;
    font-size: 30px;
    color: #f5e8d9;
    background: rgba(33, 21, 0, 0.407);
    border-style: solid;
    border-color: #d6bda4;
    border-width: 2px 0 0 0;
    padding: 8px 0;
    letter-spacing: 1px;
}

.booking-content {
    position: absolute;
    top: 260px;   /* 👈 controls how high everything starts */
    left: 30px;
    width: 750px;
}

.booking-title {
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    color: #f8efe4;
    font-weight: normal;
    background: rgba(33, 21, 0, 0.407);
    width: 100%;
    max-width: 710px;
    text-align: center;

    border-radius: 10px;
    border-color: #f8efe4;
    border-width: 0 0 3px 0;
    border-style: solid;
    margin: 0; /* IMPORTANT: remove old spacing */
    padding: 20px;
    letter-spacing: 3px;
}

.booking-steps {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.step {
    font-family: 'Great Vibes', cursive;
    color: #f8efe4;
    font-weight: normal;

    background: rgba(33, 21, 0, 0.407);
    flex: 1;
    width: auto;
    letter-spacing: 1px;
}

.step1 {
    border-width: 0 3px 0 0;
    border-style: solid;
}

.step2 {
    border-width: 0 3px 0 0;
    border-style: solid;
}

.step3 {
    border-width: 0 0 0 0;
    border-style: solid;
}

.booking-title h2 {
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.booking-title p {
    font-size: 14px;
    font-family: 'Playfair Display', serif;
    line-height: 1.5;
    margin: 0;
}


.about-panel {
    position: fixed;
    top: 0;
    right: -400px; /* hidden off-screen */
    width: 400px;
    height: 100vh;

    background: #e6d5c3; /* beige */
    border-left: 3px solid #000;

    box-shadow: -10px 0 30px rgba(0,0,0,0.2);

    transition: right 0.4s ease;
    z-index: 9999;
}

.about-panel.open {
    right: 0;
}

.about-content h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.close-btn {
    position: absolute;
    top: 15px;
    left: 15px;

    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 21;
}

.about-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;

    background: #e6d5c3;
    border-left: 3px solid #000;

    transition: right 0.4s ease;
    z-index: 9999;
}

.about-panel.open {
    right: 0;
}

.about-content {
    position: relative;
    height: 100%;
    padding: 0 40px 0 40px;
    overflow-y: auto;

    font-family: 'Playfair Display', serif;
    color: #1a1a1a;

    box-sizing: border-box;
}

.about-content::before,
.about-content::after {
    content: "";
    position: sticky;
    left: 0;
    display: block;
    width: 100%;
    height: 50px;
    pointer-events: none;
    z-index: 10;
}

.about-content::before {
    top: 0;
    background: linear-gradient(
        to bottom,
        #e6d5c3,
        rgba(230,213,195,0)
    );
}

.about-content::after {
    bottom: 0;
    background: linear-gradient(
        to top,
        #e6d5c3,
        rgba(230,213,195,0)
    );
}

.fade-top,
.fade-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    pointer-events: none;
    z-index: 20;
}

.fade-top {
    top: 0;
    background: linear-gradient(
        to bottom,
        #e6d5c3,
        rgba(230,213,195,0)
    );
}

.fade-bottom {
    bottom: 0;
    background: linear-gradient(
        to top,
        #e6d5c3,
        rgba(230,213,195,0)
    );
}


  .gp-section {
    background: rgba(33, 21, 0, 0.915);
    border: 2px solid #d6bda4;
    border-radius: 10px;
    padding: 32px 20px 32px 20px;
    max-width: 450px;
    font-family: 'Playfair Display', serif;
    color: #f8efe4;
    box-sizing: border-box;
    position: absolute;
    right: 15px;
    top: 40px;
  }

  .gp-title {
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    color: #f8efe4;
    font-weight: normal;
    letter-spacing: 3px;
    margin: 0 0 4px;
    text-align: center;
  }

  .gp-dates {
    text-align: center;
    font-size: 13px;
    font-family: 'Playfair Display', serif;
    color: #e0ccb4;
    letter-spacing: 1.5px;
    margin: 0 0 22px;
    text-transform: uppercase;
  }

  .gp-divider {
    border: none;
    border-top: 2px solid #d6bda4;
    margin: 0 0 22px;
    opacity: 0.7;
  }

  .gp-tagline {
    font-size: 16px;
    line-height: 1.65;
    color: #f0dfc8;
    text-align: center;
    margin: 0 0 26px;
    font-family: 'Playfair Display', serif;
  }

  .gp-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 22px;
  }

  .gp-hour-card {
    background: rgba(248, 239, 228, 0.08);
    border: 1px solid rgba(214, 189, 164, 0.5);
    border-radius: 8px;
    padding: 16px 20px;
    text-align: center;
  }

  .gp-hour-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9b28c;
    font-family: 'Playfair Display', serif;
    margin: 0 0 6px;
  }

  .gp-hour-days {
    font-size: 14px;
    font-weight: 600;
    color: #f8efe4;
    font-family: 'Playfair Display', serif;
    margin: 0 0 4px;
  }

  .gp-hour-time {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    color: #f5dfc4;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
  }

  .gp-note {
    font-size: 14.5px;
    color: #c9b28c;
    text-align: center;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    margin: 0 0 24px;
    letter-spacing: 0.1px;
  }

  .gp-menu-btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    background: rgba(201, 178, 140, 0.18);
    border: 2px solid #c9b28c;
    border-radius: 8px;
    color: #f8efe4;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
    box-sizing: border-box;
  }

  .gp-menu-btn:hover {
    background: rgba(201, 178, 140, 0.35);
    transform: translateY(-2px);
  }

  .gp-menu-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
    cursor: zoom-in;
    transition: transform 0.3s ease;
  }

  .gp-menu-image.zoomed {
    transform: scale(2);
    cursor: zoom-out;
    transform-origin: top left;
    width: 100%;
  }

  .gp-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    z-index: 9999;
    align-items: center;
    justify-content: center;
  }
  .gp-overlay.active { display: flex; }

  .gp-modal {
    position: relative;
    background: #e6d5c3;
    border: 3px solid #c9b28c;
    border-radius: 10px;
    padding: 44px 16px 16px;
    max-width: 710px;
    max-height: 92vh;
    width: 95vw;
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  .gp-modal-title {
    font-family: 'Great Vibes', cursive;
    font-size: 30px;
    margin: 0 0 2px;
    font-weight: normal;
    color: #3b2209;
    margin: 0 0 8px;
    letter-spacing: 2px;
  }

  .gp-modal-sub {
    font-size: 13px;
    color: #7a5c38;
    margin: 0 0 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .gp-modal-placeholder {
    overflow: auto;
    max-height: 75vh;
  }


  .gp-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #3b2209;
    font-family: serif;
    line-height: 1;
  }
  .gp-modal-close:hover { color: #c9b28c; }

@media (max-width: 1240px) {
  .gp-section {
    top: 220px;
    height: auto;
  }
}

@media (max-width: 1240px) {
  .gp-section {
    position: relative;
    top: 0;
    right: auto;
    margin: 0px auto;
    margin-right: 2px;
    max-width: 100vw;
    padding: 28px 16px;
    border-width: 4px;
  }

  .gp-hour-time {
    font-size: 20px; 
  }
  
  .gp-hours-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .gp-hour-card {
    padding: 12px 8px;  
  }

  .about-panel {
    width: 100vw;        /* full screen on phone */
    right: -100vw;       /* hide off screen */
  }

  .about-panel.open {
    right: 0;
  }

  .about-content {
    padding: 0px 24px 0px 24px;
  }

}

@media (max-width: 1128px) {

  .hero {
    height: auto;
    min-height: 100vh;

    padding-bottom: 40px;

    display: block;

    overflow: visible;
  }

  .booking-content {
    position: relative;
    top: auto;
    left: auto;

    width: calc(100% - 30px);
    margin: 0 auto;
  }

  .booking-title {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    font-size: 34px;
    padding: 16px;
    letter-spacing: 2px;
  }

  .booking-title h2 {
    font-size: 22px;
  }

  .booking-title p {
    font-size: 15px;
  }

  .booking-steps {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .step {
    width: 100%;
    box-sizing: border-box;
  }

  .step1,
  .step2,
  .step3 {
    border-width: 0 0 2px 0;
  }

  .booking-container {
    position: relative;

    right: auto;
    bottom: auto;

    width: calc(100% - 30px);
    margin: 20px auto 0;
  }

  .book-btn {
    width: 100%;
    box-sizing: border-box;

    justify-content: center;

    font-size: 24px;
    padding: 16px;
  }

  .book-btn img {
    width: 32px;
    height: 32px;
  }

  .book-subtitle {
    font-size: 24px;
  }
}


.created-by {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #fdfdfd;
  z-index: 20;
}

.footer-logo {
  height: 100px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}



@media (max-width: 1128px) {
  .created-by {
    position: relative;
    display: flex;
    align-items: center;
    left: auto;
    margin-left: 10px;
    gap: 8px;
    font-size: 13px;
    margin-top: 30px;
  }

  .footer-logo {
    height: 100px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
  }
}