/* 
   Full Booking.css
   Using 'Oleo Script' for .booking-title & .phone-number-booking
*/

/* Overall site fonts & colors */
body {
  margin: 0;
  padding: 0;
  /* Default font for body can remain 'Open Sans' or anything else: */
  font-family: 'Open Sans', sans-serif;
  color: #ffffffca;
  background-color: #ffffff9b;
}

/*******************************************************
* NAVBAR
*******************************************************/
.header {
  position: absolute;  
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  margin: 0;
  padding: 0;
}

.navbar {
  display: block;
  margin: 0;
  padding: 0;
  background: transparent;
}

.nav-container {
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 20px;
  background: rgba(176, 146, 144, 0.5);
  border-radius: 0 0 30px 0;
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #6e4640;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
  z-index: 99999;
}

.nav-links li {
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-block;
  padding: 8px 16px;
  background: #b4a4a2; 
  color: #FFFFFF;
  font-family: 'Playfair Display', serif; /* keep Playfair for nav links */
  font-size: 1rem;
  font-weight: bold;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
  background: #b8857e;
  color: #b4a4a2;
  transform: scale(1.05);
}

.logo {
  margin-left: auto;
}

.logo img {
  height: 75px;
  width: auto;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 10px;
    background: #b4a4a2;
    border-radius: 10px;
    padding: 10px;
    gap: 10px;
    z-index: 99999;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links a {
    padding: 10px 15px;
    font-size: 1rem;
    background: #b8857e;
    color: #800000;
    border-radius: 15px;
  }
}

/*******************************************************
* Booking Page
*******************************************************/
.booking-page {
  position: relative;
  background: url('../images/booking-background.jpg') center center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlays a maroon tint over the background image */
.booking-page::before {
  content: '';
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(128, 0, 0, 0.564);
  z-index: 1;
}

/* Container for the form + contact info */
.booking-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center; /* center horizontally */
}

.enquiry-form {
  flex: 1;
  min-width: 300px;
  margin-right: 50px;
  margin-bottom: 30px;
}

/* Now we use Oleo Script for .booking-title */
.booking-title {
  font-family: 'Oleo Script', cursive; 
  font-size: 3em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.enquiry-form form {
  display: flex;
  flex-direction: column;
}

/* Each input/textarea row */
.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 30px;
  font-size: 1em;
  background-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
  outline: none;
  transition: background-color 0.3s;
}

/* Placeholders: bright white, fully opaque */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ffffff;
  opacity: 1;
}

/* Submit button */
.btn-booking {
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  background-color: #b8857e;
  color: #FFFFFF;
  font-size: 1.2em;
  font-family: 'Playfair Display', serif;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.btn-booking:hover {
  background-color: #FFC0CB;
  color: #b8857e;
}

/* Contact Info block */
.contact-info-booking {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Also use Oleo Script for phone heading + phone number text */
.phone-number-booking {
  font-family: 'Oleo Script', cursive;
  font-size: 2em;
  margin-top: 20px;
}

.phone-number-booking a {
  color: #FFFFFF;
  text-decoration: none;
}
.phone-number-booking a:hover {
  text-decoration: underline;
}

/* Additional Mobile Tweaks */
@media (max-width: 768px) {
  /* Add top padding so heading doesn't collide with navbar */
  .booking-page {
    padding-top: 80px;
  }

  .booking-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .enquiry-form {
    margin-right: 0;
  }
  .contact-info-booking {
    margin-top: 30px;
    align-items: center;
  }
  /* If you need more spacing above the form heading: */
  .booking-title {
    margin-top: 40px; 
  }
}

/* ===============================
 FOOTER
=============================== */
.footer {
  background: url('../images/pink-ribbon.jpg') center center/cover no-repeat;
  padding: 30px 0;
  color: #FFFFFF;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* Social Media Icons */
.social-media {
  display: flex;
  gap: 20px;
}

.social-media a {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.social-media a img {
    width: 50px;
    height: 50px;
}

/* Hover Glow Effect */
.social-media a:hover {
    transform: scale(1.1);
}

/* Glow Colors */
.facebook:hover {
    box-shadow: 0 0 40px rgba(24, 119, 242, 1);
    background-color: rgba(24, 119, 242, 0.3);
}

.youtube:hover {
    box-shadow: 0 0 40px rgba(255, 0, 0, 1);
    background-color: rgba(255, 0, 0, 0.3);
}

.instagram:hover {
    box-shadow: 0 0 40px rgba(225, 48, 108, 1);
    background-color: rgba(225, 48, 108, 0.3);
}

.tiktok:hover {
    box-shadow: 0 0 40px rgba(255, 0, 80, 1);
    background-color: rgba(255, 0, 80, 0.3);
}

/* Contact Info - Desktop (Left Aligned) */
.contact-info {
  font-size: 1.1em;
  text-align: left;
}

/* Style Email & Phone */
.contact-info a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #FFD700;
}

/* Footer Logo */
.footer-logo img {
  max-height: 85px;
}

/* =========== Mobile View Fix =========== */
@media (max-width: 768px) {
  .footer .container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .social-media {
      flex-wrap: wrap;
      justify-content: center;
  }

  /* Center the email & phone on mobile */
  .contact-info {
      text-align: center;
      width: 100%; /* Ensures full width for centering */
  }

  .contact-info a {
      display: block; /* Makes sure each link is on its own line */
      margin-bottom: 5px;
  }
}


/*******************************************************
* Scroll Animation
*******************************************************/
.scroll-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-animation.show {
  opacity: 1;
  transform: translateY(0);
}
