/*
Theme Name: IVPL
Theme URI: https://imperialvoyages.com/
Author: Imperial Voyages Pvt Ltd
Author URI: https://imperialvoyages.com/
Description: A custom responsive WordPress theme developed for Imperial Voyages Pvt Ltd.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-theme, responsive, travel, tours, bootstrap, tailwind, WordPress
Text Domain: ivpl
*/
/* Default (Desktop) */
h1 {
  font-size: 64px;
}

h2 {
  font-size: 54px;
}

.tour-info-title {
  font-size: 36px;
}

/* Tablet (≤ 991px) */
@media (max-width: 991px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 48px;
  }
}

/* Mobile (≤ 767px) */
@media (max-width: 767px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }
}

.pt-60 {
  padding-top: 60px;
}

.custom-logo {
  max-height: 105px;
  max-width: 200px;
  height: auto;
  width: 100%;
  padding: 10px 0;
}

.package-card3.style-3 .package-card-img {
  height: 250px;
  overflow: hidden;
}

.package-card3.style-3 .package-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* fills box, crops excess */
  display: block;
  /* removes bottom whitespace */
}

/* Wrapper styling */
.plan-your-trip {
  color: #8b6c3f;
  max-width: 600px;
  margin: auto;
  font-family: 'Georgia', serif;
}

/* Inputs, Textarea, Select */
.plan-your-trip .wpcf7-form-control.wpcf7-text,
.plan-your-trip .wpcf7-form-control.wpcf7-email,
.plan-your-trip .wpcf7-form-control.wpcf7-tel,
.plan-your-trip .wpcf7-form-control.wpcf7-textarea,
.plan-your-trip .wpcf7-form-control.wpcf7-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #c2a97d;
  border-radius: 12px;
  background-color: #fdfaf5;
  font-size: 1rem;
  color: #5a4425;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

.plan-your-trip .wpcf7-form-control:focus {
  outline: none;
  border-color: #b3874d;
  box-shadow: 0 0 0 3px rgba(179, 135, 77, 0.2);
}

.plan-your-trip .wpcf7-textarea {
  min-height: 100px;
  resize: vertical;
}

.plan-your-trip .wpcf7-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%238b6c3f' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 16px;
}

/* Custom Radio Buttons */
.plan-your-trip .radio-group {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.plan-your-trip input[type="radio"] {
  display: none;
}

.plan-your-trip .custom-radio {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border: 2px solid #c2a97d;
  border-radius: 25px;
  cursor: pointer;
  color: #8b6c3f;
  font-weight: 500;
  transition: all 0.2s ease;
  background-color: #fdfaf5;
}

.plan-your-trip input[type="radio"]:checked+.custom-radio {
  background-color: #a67c52;
  color: white;
  border-color: #a67c52;
}

/* Checkbox Styling */
.plan-your-trip input[type="checkbox"] {
  accent-color: #a67c52;
  margin-right: 0.5rem;
}

/* Submit Button */
.plan-your-trip .wpcf7-submit {
  background-color: #a67c52;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.plan-your-trip .wpcf7-submit:hover {
  background-color: #8b6c3f;
}

/* Number Increment/Decrement Buttons */
.plan-your-trip .number-field-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.plan-your-trip .number-field-group strong {
  min-width: 80px;
}

.plan-your-trip input[type="number"] {
  width: 60px;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  background-color: transparent;
  border: none;
  color: #8b6c3f;
  font-family: 'Segoe UI', sans-serif;
}

.plan-your-trip input[type="number"]:focus {
  outline: none;
}

.plan-your-trip button.increase,
.plan-your-trip button.decrease {
  background: none;
  border: 2px solid #b99461;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  color: #8b6c3f;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.plan-your-trip button.increase:hover,
.plan-your-trip button.decrease:hover {
  background-color: #b99461;
  color: #fff;
}

.plan-your-trip .number-field-group small {
  font-size: 0.85rem;
  color: #b99461;
  margin-left: 8px;
}

/* Optional: Spacing between sections */
.plan-your-trip .trip-duration-group,
.plan-your-trip .traveler-group {
  margin-bottom: 2rem;
}

.category-thumb {
  height: 175px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 10px;
  width: 100%;
  /* optional, ensures full width */
}

/* Make the image fill and crop nicely */
.category-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.package-category-section .package-card-img-wrap a {
  height: 225px;
  overflow: hidden;
  margin-bottom: 0px;
  border-radius: 10px;
  width: 100%;
}

.package-category-section .package-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.package-card5.destination h6 {
    color: #fff;
}