/*
Theme Name: Gowilds
Theme URI: https://gaviaspreview.com/wp/gowilds/
Author URI: https://themeforest.net/user/gavias
Author: Gaviasthemes Team
Description: The 2023 theme for WordPress is a fully responsive theme that looks great on any device.
Version: 1.1.9
Tested up to: 5.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, right-sidebar, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, sticky-post, theme-options, translation-ready
Text Domain: gowilds

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
.wp-caption-text{
   font-weight: 400;
   font-size: 14px;
   font-style: italic;
   color: #3f3836;
}
.gallery-caption{
   font-weight: 500;
}
.bypostauthor{
   text-align: left;
}
/* Booking Form Styling - Roboto + Black + #FFB818 */
.booking-form-wrapper {
  font-family: 'Roboto', sans-serif;
  color: #000;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

/* Left (User Info) */
.booking-user-info {
  flex: 1 1 50%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.booking-user-info h3 {
  font-size: 1.2rem;
  color: #FFB818;
  margin-bottom: 15px;
}

.booking-user-info label {
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

.booking-user-info input,
.booking-user-info select {
  width: 100%;
  padding: 10px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
}

.booking-user-info input:focus,
.booking-user-info select:focus {
  border-color: #FFB818;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255,184,24,0.3);
}

.booking-user-info .terms {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 0.85rem;
}

/* Right (Booking Details) */
.booking-details {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.booking-card h3 {
  font-size: 1.2rem;
  color: #FFB818;
  margin-bottom: 15px;
}

.booking-card .row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.booking-card .row input,
.booking-card .row select {
  flex: 1;
}

/* Price Display */
.total-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #FFB818;
  text-align: right;
  margin-top: 10px;
}

/* Passenger Uploads */
.passenger-upload {
  margin-bottom: 15px;
}

.passenger-upload label {
  font-size: 0.9rem;
  margin-bottom: 6px;
  display: block;
}

.passenger-upload input[type="file"] {
  border: 1px solid #ccc;
  padding: 6px;
  border-radius: 8px;
  width: 100%;
}

/* Submit Button */
.booking-submit {
  background: #FFB818;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  margin-top: 15px;
  transition: background 0.3s ease;
}

.booking-submit:hover {
  background: #e6a512;
}

/* Responsive */
@media (max-width: 992px) {
  .booking-form-wrapper {
    flex-direction: column;
  }
  .booking-user-info, 
  .booking-details {
    flex: 1 1 100%;
  }
}



