
/* amiri-latin-400-normal */
@font-face {
  font-family: 'Amiri';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/amiri@latest/latin-400-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/amiri@latest/latin-400-normal.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* cormorant-latin-wght-normal */
@font-face {
  font-family: 'Cormorant Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 300 700;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/cormorant:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

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

body {
  font-family: 'Cormorant Variable';
  margin: 0;
}

/* Nav and logo */

.logo img {
  height: 70px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #ffffff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  padding-bottom: 17px;
}

.nav-links a {
  color: #3d3535;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 300;
}

/* info panel */

.restinfo-panel {
  text-align: center;
  color: #3d3535;
  background-color: #ffffff;
  padding: 40px;
  margin: 0 auto;
}

.restinfo-panel h1 {
  font-family: 'Amiri';
  font-size: 1.9rem;
  font-weight: 400;
}

.restinfo-panel p {
  font-size: 1rem;
  font-weight: 200;
  padding-top: 20px;
}

/* Form */

.form-panel {
  background-color: #ffffff;
   padding-bottom: 20px;
}

.form-wrapper {
  color: #111;
  background-color: #e6cfb4; /* warm beige */
  padding: 40px 80px 20px 80px;
  max-width: 800px;
  margin: 40px auto;
}

.section-title {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.row {
  display: flex;
  gap: 1rem;
  margin-bottom: 30px;
}

.row.single {
    gap: 0;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  font-size: 0.9rem;
  margin-bottom: 14px;
  font-weight: 300;
}

label span {
  color: #cf2626;
  font-size: 0.8rem;
  opacity: 0.8;
}
label span.optional {
  color: #878787;
}

input, select, textarea {
  height: 50px;
  border: 2px solid #00a616;
  background: #fff;
  padding: 4px 6px;
  font-size: 16px;
  font-family: system-ui;
}

select {
  font-size: 17px;
}

input:focus {
  outline: none;
  border-color: #444;
}

textarea {
  height: 150px;
}

button.pop-button {
  height: 50px;
  border: 1px solid #e65c5c;
  color: #fff;
  background: #f38846;
  padding: 4px 20px;
  font-size: 19px;
  margin: 20px auto;
}

/* form validation */

input:invalid,
textarea:invalid,
select:invalid {
  border: 2px solid #e74c3c;
}

input:valid,
textarea:valid
select:valid {
  border: 2px solid #2ecc71;
}

.error-message, .recapture-error {
  color: #ca200e;
  font-size: 0.85rem;
  margin-top: 4px;
  font-weight: 300;
}

/* form Mobile layout */
@media (max-width: 768px) {
  .nav-links {
    gap: 25px;
  }

  .row {
      flex-direction: column;
      gap: 30px;
  }

  .form-wrapper {
      padding: 40px 24px;
  }
}

/* WhatsApp */

.wa-divider {
  max-width: 90%;
  height: 1px;
  background: #000000;
  margin: 0 auto 20px;
}

.wa-panel {
  width: 300px;
  text-align: center;
  font-size: 1rem;
  font-weight: 100;
  margin: 70px auto;
}

.wa-panel p {
  margin: 30px auto;
}

.wa-panel a {
  color: #f48847;
  font-weight: 300;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: .3em;
  font-size: 1.3rem;
  margin: 0 8px;
}

/* CANCEL booking */

.booking-card {
  max-width: 600px;
  margin: 5px auto 40px auto;
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  font-family: Arial, sans-serif;
}

.booking-card h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.booking-list {
  margin: 0;
}

.booking-list > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 10px 0;
  border-bottom: 1px solid #ffd1b5;
}

.booking-list > div:last-child {
  border-bottom: none;
}

dt {
  font-weight: 600;
  color: #555;
}

dd {
  margin: 0;
  color: #222;
}

@media (max-width: 480px) {
  .booking-list > div {
    grid-template-columns: 1fr;
  }

  dt {
    margin-bottom: 4px;
  }
}

/* FOOTER */

.poppies-footer {
  background: #282d30;
  color: #ffffff;
  text-align: center;
  padding: 50px 20px 60px;
  font-family: 'Cormorant Variable';
}

.footer-nav {
  font-size: 1.3rem;
  font-weight: 100;
  letter-spacing: 0.5px;
  margin-bottom: 35px;
  line-height: 2;
}

.footer-nav a {
  color: #f48847;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
  margin: 0 6px;
}

.footer-nav span {
  color: #ffffff;
  opacity: 0.8;
}

.footer-divider {
  max-width: 90%;
  height: 1px;
  background: #f48847;
  margin: 0 auto 35px;
}

.footer-content h4 {
  font-family: 'Amiri';
  color: #f48847;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.footer-content p {
  font-size: 0.9rem;
  margin: 6px 0;
  font-weight: 100;
}

.footer-content a {
  color: #ffffff;
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}

.address {
  margin-bottom: 12px;
}

.social-icons {
  margin-top: 30px;
}

.social-icons a {
  color: #ffffff;
  margin: 0;
  display: inline-block;
}

.social-icons img {
  transition: opacity 0.2s ease;
  width: 50px;
  height: 50px;
}

.social-icons a:hover png {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-nav {
    font-size: 16px;
  }

  .footer-content h2 {
    font-size: 22px;
  }

  .footer-content p {
    font-size: 16px;
  }
}
