@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&display=swap');
.wpbf-menu > .wpbf-menu-button a {
	background: #005fa3;
	color: #fff !important;
	border-radius: 4px;
	padding-right: 20px !important;
	padding-left: 20px !important;
}

.wpbf-menu > .wpbf-menu-button a:hover {
	background: #007cd6;
}
.event-list {
  max-width: 900px;
  padding: 20px 24px;
}

.event-item {
  display: flex;
  align-items: flex-start;
  margin-right: 28px;
  position: relative;
  padding-left: 22px;
  margin-bottom: 34px;
}

.event-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: -10px;
  width: 1px;
  background: rgba(214, 177, 89, 0.8);
}

.event-date {
  min-width: 90px;
  padding-top: 2px;
}

.event-date span {
  font-size: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d6b159;
  font-family: Arial, sans-serif;
  display: inline-block;
}

.event-content h3 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400;
  color: #f5eadc;
  font-family: "Times New Roman", serif;
}

.event-content p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  font-family: Arial, sans-serif;
}


/* FORM Ở ĐÂY NHÉ */
.custom-contact-form h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.1;
  color: #e9e6ea;
  margin-bottom: 28px;
}

.custom-contact-form .form-row {
  margin-bottom: 20px;
}

.custom-contact-form .two-col {
  display: flex;
  gap: 20px;
}

.custom-contact-form .form-col {
  flex: 1;
}

.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form textarea {
  width: 100%;
  background: #2a0004;
  border: 1px solid rgba(214, 177, 89, 0.18);
  color: #d9d9d9;
  font-size: 15px;
  padding: 16px 18px;
  border-radius: 2px;
  box-shadow: none;
  margin: 0;
}

.custom-contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder {
  color: #a8a0a0;
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
  border-color: rgba(214, 177, 89, 0.45);
  outline: none;
  box-shadow: none;
}

.custom-contact-form input[type="submit"] {
  background: #d6b159;
  color: #111;
  border: none;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  cursor: pointer;
  min-width: 170px;
}

.custom-contact-form input[type="submit"]:hover {
  background: #e2bd68;
  color: #111;
}

@media (max-width: 849px) {
  .custom-contact-form .two-col {
    display: block;
  }

  .custom-contact-form .form-col {
    margin-bottom: 20px;
  }

  .custom-contact-form h2 {
    font-size: 30px;
  }
}

/* làm típ hover up */
.hover-up {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(0);
}

.hover-up:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Layout Container */
.reservation-grid {
    color: #ffffff;
    max-width: 800px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

/* THE FIX: Background Color & Text Clipping */
.reservation-grid input, 
.reservation-grid select, 
.reservation-grid textarea {
    background-color: #300c0b !important; /* Your specific Dark Red */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    
    /* These properties fix the "sinked in" glitch */
    padding: 15px 12px !important; 
    line-height: 1.2 !important;
    height: auto !important;
    min-height: 50px !important;
    box-sizing: border-box !important;
    
    border-radius: 4px;
    font-size: 16px;
}

/* Ensure dropdown arrows and dates look right */
.reservation-grid select {
    appearance: none;
    cursor: pointer;
}

/* Label Styling */
.reservation-grid label {
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
    color: #ffffff;
}

/* Submit Button */
.form-submit input[type="submit"] {
    background-color: #e9bb68 !important; /* The Yellow from previous turn */
    color: #ffffff !important;
    border: none !important;
    padding: 16px 40px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    width: auto;
}

.form-submit input[type="submit"]:hover {
    background-color: #d4a755 !important;
}


/* 1. Target the main container to remove top/side gaps */
section-content relative {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/* 2. Fix the background layer to fill the entire space */
section-content relative .section-bg-overlay.absolute.fill {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url(https://bardoyeu.online/wp-content/uploads/2026/03/532252198_17961978257959084_4146856444857679795_n-1.jpg) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}