/* =======================
   Imports & Base Styles
======================= */

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Volkhov:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");

/* Reset and box-sizing for all elements */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base body styles */
body {
  font-family: "Poppins", sans-serif;
  color: #222222;
  line-height: 1.6;
}

/* =======================
   Container
======================= */

/* Responsive container with max-width breakpoints */
.container {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container max-widths for different screen sizes */
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

/* =======================
   Header & Navigation
======================= */

/* Header background and width */
.site-header {
  background-color: #fefcfb;
  width: 100%;
}

/* Main navigation bar layout */
.main-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

/* Logo styles */
.site-logo {
  font-family: "Volkhov", serif;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: 0.006rem;
  text-decoration: none;
  color: #000000;
  gap: 0.5rem;
}

/* Navigation list styles */
.nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-list-item {
  display: flex;
  align-items: center;
}

/* Navigation link styles */
.nav-link {
  text-decoration: none;
  color: #000000;
  line-height: 1.5rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #fd8d3a;
}

/* Authentication button group */
.auth-group {
  display: flex;
  gap: 1rem;
}

/* Auth link styles */
.auth-link {
  text-decoration: none;
  background-color: #ffffff;
  color: #000000;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.2s color 0.2s;
}

.auth-link-login {
  color: #fd8d3a;
}

.auth-link-login:hover {
  color: #ffffff;
  background-color: #fd8d3a;
}

.auth-link-signup {
  color: #ffffff;
  background-color: #fd8d3a;
}

.auth-link-signup:hover {
  background-color: #ff9800;
}

/* Responsive navigation for mobile */
@media (max-width: 767px) {
  .site-header {
    padding: 0;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0.5rem;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.5rem;
  }

  .nav-list-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
  }

  .auth-group {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
}

/* =======================
   Hero Section
======================= */

/* Hero section layout */
.hero {
  width: 100%;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fefcfb;
}

/* Hero content flex layout */
.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.hero-text {
  flex: 1;
}

/* Hero title and highlight */
.hero-title {
  font-family: "Volkhov", serif;
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero-highlight {
  color: #fa7436;
  font-weight: bold;
}

.hero-desc {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #666666;
}

/* Hero button styles */
.hero-button {
  font-size: 1.125rem;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #ffffff;
  color: #fa7436;
  border: 1px solid #fa7436;
  border-radius: 4px;
  text-decoration: none;
}

.hero-button:hover {
  background-color: #ff9800;
}

/* Hero image styles */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* =======================
   Explore Form
======================= */

/* Explore form section layout */
.explore-form {
  width: 100%;
  padding: 2rem 0;
  background-color: #fefcfb;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Explore form inner layout */
.explore-form-form {
  width: auto;
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 4px;
}

.form-inputs {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  width: auto;
  justify-content: center;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 160px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #666666;
  margin-bottom: 0.25rem;
}

.form-group select {
  appearance: none;
  background: #ffffff;
  border-radius: 4px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.select-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.location {
  width: 4.5rem;
}

.date {
  width: 2.5rem;
}

/* Explore form button styles */
.explore-form-button {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  padding: 0.75rem 1.5rem;
  background-color: #fa7436;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
  cursor: pointer;
}

/* =======================
   Section Titles & Highlights
======================= */

/* Section title layout and highlight */
.section-title {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-title-text {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.section-title-element {
  position: absolute;
  inset: 0% 6% auto auto;
}

.section-title-heading {
  font-size: 3rem;
  font-family: "Volkhov", serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-title-highlight,
.deals-section-highlight,
.section-title-highlight {
  color: #fa7436;
}

.section-title-desc {
  color: #666;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  max-width: 34%;
}

/* =======================
   Vacation Steps
======================= */

/* Vacation steps section background and layout */
.vacation-plans {
  background-color: #f7f8fc;
  padding: 7.5rem 0;
}

.vacation-steps {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}

/* Individual vacation step card */
.vacation-step {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1 1 200px;
  max-width: 350px;
  position: relative;
}

.vacation-step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem 0;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
  text-align: left;
}

.vacation-step-desc {
  color: #666;
  font-size: 1rem;
  position: relative;
  z-index: 2;
  text-align: left;
}

/* Decorative vector for vacation step */
.step-vector {
  position: absolute;
  z-index: 0;
  inset: 0% auto auto 0%;
  height: 100%;
}

/* =======================
   Deals Section
======================= */

/* Deals section background and layout */
.deals-section {
  background-color: #fefcfb;
  padding: 7.5rem 0;
}

.deals-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.deals-section-heading {
  font-size: 3rem;
  font-family: "Volkhov", serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.deals-section-desc {
  font-size: 1.125rem;
  max-width: 28%;
  text-align: center;
}

/* Deals cards grid layout */
.deals-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

/* Individual deal card styles */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* Hide card button by default and center it absolutely */
.card-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 2;
}

/* Show button on card hover */
.card:hover .card-button {
  opacity: 1;
  pointer-events: auto;
}

/* Make card images grayscale on hover */
.card img[alt$="Madrid Image"],
.card img[alt$="Firenze Image"],
.card img[alt$="Paris Image"],
.card img[alt$="London Image"] {
  transition: filter 0.3s;
}

.card:hover img[alt$="Madrid Image"],
.card:hover img[alt$="Firenze Image"],
.card:hover img[alt$="Paris Image"],
.card:hover img[alt$="London Image"] {
  filter: grayscale(100%);
}

/* Deal card image styles */
.card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin: 0;
  padding: 0;
  border-radius: 12px;
}

/* Deal card title and rating row */
.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 1.5rem 0 0.25rem 0;
  width: 90%;
}

.card-title {
  font-size: 1.5rem;
}

/* Deal card rating group */
.card-rating-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-rating {
  font-size: 1rem;
  color: #666666;
}

/* Deal card info row */
.card-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  padding: 0.25rem 0 1.5rem 0;
  font-size: 1rem;
  width: 90%;
}

/* Deal card location and price groups */
.card-location-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-price-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.card-old-price {
  text-decoration: line-through;
  color: #bbb;
  margin-left: auto;
}

.card-new-price {
  color: #fa7436;
  background-color: #ffe7db;
  font-weight: 700;
  margin-left: 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

/* Card button styles */
.card-button {
  position: absolute;
  background: #fa7436;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.4rem 1rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
}

.card-button:hover {
  background: #ff9800;
}

/* Deals navigation buttons */
.deals-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
}

/* =======================
   Best Vacation Plan Cards
======================= */

/* Best vacation section background and layout */
.best-vacation-section {
  background-color: #fefcfb;
  padding: 7.5rem 0;
}

.best-vacation-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Navigation for best vacation cards */
.best-vacation-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

/* Cards list grid for best vacation cards */
.cards-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

/* Individual best vacation card styles */
.best-vacation-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 1rem;
  width: 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  /* Optional: add a min-height for visual balance */
  min-height: 400px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  align-items: stretch;
}

/* Hide card button by default and center it absolutely for best-vacation-card */
.best-vacation-card .card-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 2;
}

/* Show button on card hover */
.best-vacation-card:hover .card-button {
  opacity: 1;
  pointer-events: auto;
}

/* Make vacation card images grayscale on hover */
.best-vacation-card img[alt$="Rome Italy Image"],
.best-vacation-card img[alt$="London UK Image"],
.best-vacation-card img[alt$="Osaka Japan Image"] {
  transition: filter 0.3s;
}

.best-vacation-card:hover img[alt$="Rome Italy Image"],
.best-vacation-card:hover img[alt$="London UK Image"],
.best-vacation-card:hover img[alt$="Osaka Japan Image"] {
  filter: grayscale(100%);
}

/* Best vacation card content and details */
.best-vacation-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.best-vacation-card-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 1rem 0;
}

.best-vacation-card-location {
  font-weight: 500;
}

.best-vacation-card-price {
  color: #fa7436;
}

.best-vacation-card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}

.card-plan {
  font-size: 1rem;
}

.best-vacation-card-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.best-vacation-card-info-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.best-vacation-card-rating {
  font-size: 1rem;
}

/* =======================
   Testimonials Section
======================= */

/* Testimonials section background and padding */
.testimonials {
  background-color: #f7f8fc;
  padding: 7.5rem 0;
  position: relative;
}

/* Testimonials section content layout */
.testimonials-section-content {
  display: flex;
  gap: 10rem;
}

/* Testimonials section title and header */
.testimonials-section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonials-title {
  font-size: 3rem;
  font-family: "Volkhov", serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.testimonials-highlight {
  color: #fa7436;
}

.testimonials-desc {
  font-family: "Roboto", sans-serif;
  color: #666;
}

/* Testimonials navigation buttons */
.testimonials-navigation {
  display: flex;
  gap: 1rem;
  padding-top: 2rem;
}

/* Testimonials cards stacking and positioning */
.testimonials-list {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 320px;
}

/* Individual testimonial card styles */
.testimonials-card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: box-shadow 0.3s, transform 0.3s;
  width: 500px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  opacity: 1;
}

/* First testimonial card in front */
.testimonials-card:nth-child(1) {
  z-index: 2;
  transform: translateX(-60px) scale(1.04);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Second testimonial card behind and blurred */
.testimonials-card:nth-child(2) {
  z-index: 1;
  transform: translateX(60px) translateY(60px) scale(0.96);
  opacity: 0.85;
  filter: blur(1px);
}

/* Testimonial person image positioning */
.person-image {
  position: absolute;
  left: -7%;
  top: -20%;
}

/* Decorative element for testimonials section */
.testimonials-section-title-element {
  position: absolute;
  inset: 10% 15% auto auto;
}

/* Testimonial card name and location */
.testimonials-card-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.25rem;
}

.testimonials-card-location {
  color: #666;
  font-size: 0.875rem;
}

/* Responsive: stack testimonial cards vertically on small screens */
@media (max-width: 600px) {
  .testimonials-list {
    flex-direction: column;
    align-items: center;
    min-height: unset;
  }

  .testimonials-card,
  .testimonials-card:nth-child(1),
  .testimonials-card:nth-child(2) {
    position: static;
    transform: none;
    width: 100%;
    margin-bottom: 1.5rem;
    opacity: 1;
    filter: none;
  }
}

/* =======================
   Blog Section
======================= */

/* Blog section heading and layout */
.blog-section-heading {
  font-size: 3rem;
  font-family: "Volkhov", serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blog-section {
  background-color: #fefcfb;
  padding: 7.5rem 0;
}

.blog-section-content {
  text-align: center;
  margin-bottom: 1rem;
}

/* Blog cards grid layout */
.blog-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

/* Individual blog card styles */
.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.blog-card img {
  border-radius: 8px;
  margin-bottom: 1rem;
  width: 100%;
  object-fit: cover;
}

.blog-card-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-align: left;
  padding-left: 0.5rem;
}

.blog-card-date {
  color: #999999;
  text-align: left;
  padding-left: 0.5rem;
}

/* Blog slider group navigation */
.blog-slider-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}

/* =======================
   Newsletter Section
======================= */

/* Newsletter section background and layout */
.newsletter-section {
  background: #fefcfb;
  padding: 2rem 0;
}

.newsletter-content {
  background-color: #fa7436;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  padding-top: 3rem;
  border-radius: 50px;
  height: 30rem;
}

.newsletter-title {
  font-size: 3rem;
  font-family: "Volkhov", serif;
  font-weight: 600;
  width: 60%;
  text-align: center;
}

/* Newsletter input group styles */
.newsletter-input-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.newsletter-input {
  font-family: "Poppins", sans-serif;
  border: none;
  outline: none;
  font-size: 1rem;
  padding: 0.5rem;
  background: transparent;
}

.newsletter-button {
  font-family: "Poppins", sans-serif;
  background: #fa7436;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  margin-left: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  height: 80%;
}

.newsletter-button:hover {
  background: #ff9800;
}

/* Newsletter decorative elements */
.newsletter-element {
  position: absolute;
  inset: 4% 6% auto auto;
}

.newsletter-group {
  position: absolute;
  inset: auto auto 0% 0%;
}

/* Newsletter form layout */
.newsletter-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  width: 60%;
  height: 15%;
  border-radius: 10px;
  padding-right: 1rem;
}

/* =======================
   Footer Section
======================= */

/* Footer background and layout */
.site-footer {
  background: #f7f8fc;
  padding: 3rem 0 1rem 0;
}

.site-footer-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

/* Footer brand and logo */
.site-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.site-footer-logo {
  font-family: "Volkhov", serif;
  font-size: 1.5rem;
  font-weight: bold;
}

.site-footer-desc {
  color: #666666;
  margin-bottom: 1rem;
}

/* Footer social icons */
.site-footer-socials {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.site-footer-socials img {
  transition: filter 0.2s;
}

.site-footer-socials img:hover {
  filter: brightness(0.8) invert(0.8) sepia(1) hue-rotate(-20deg) saturate(5);
}

/* Footer navigation */
.site-footer-nav {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}

.site-footer-nav-section {
  min-width: 120px;
}

.site-footer-nav-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.site-footer-nav-list {
  list-style: none;
  padding: 0;
}

.site-footer-nav-list li {
  margin-bottom: 0.5rem;
}

.site-footer-nav-list a {
  color: #666666;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer-nav-list a:hover {
  color: #fa7436;
}

/* Footer divider line */
.site-footer-line {
  color: #999999;
  margin: 2rem 0 1rem 0;
}

/* Footer legal and links */
.site-footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #666666;
}

.site-footer-legal-links a {
  color: #666666;
  text-decoration: none;
  margin-left: 1rem;
}

.site-footer-legal-links a:hover {
  text-decoration: underline;
}

/* =======================
   Responsive Styles
======================= */

/* Responsive grid and flex adjustments for various breakpoints */
@media (max-width: 1200px) {
  .deals-cards,
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .vacation-steps,
  .cards-list,
  .testimonials-list {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .deals-cards,
  .blog-list {
    grid-template-columns: 1fr;
  }

  .site-footer-nav {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  /* Responsive adjustments for tablets */
  .cards-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-card:nth-child(2) {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title-heading,
  .deals-section-heading,
  .blog-section-heading {
    font-size: 1.2rem;
  }

  .vacation-step,
  .best-vacation-card,
  .testimonials-card,
  .blog-card {
    max-width: 100%;
    width: 100%;
  }

  .newsletter-content {
    padding: 0 0.5rem;
  }

  .site-footer {
    padding: 2rem 0 1rem 0;
  }

  .site-footer-legal {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .cards-list {
    grid-template-columns: 1fr;
  }
}

/* =======================
   Enhanced Responsive Styles
======================= */

/* For tablets and below */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .hero-text,
  .hero-image {
    width: 100%;
    flex: unset;
  }

  .section-title-desc,
  .newsletter-title,
  .newsletter-form {
    max-width: 90%;
    width: 100%;
  }

  .vacation-steps,
  .cards-list,
  .deals-cards,
  .blog-list {
    flex-direction: column !important;
    display: flex !important;
    gap: 2rem;
    align-items: center;
  }

  .vacation-step,
  .best-vacation-card,
  .card,
  .blog-card {
    width: 100% !important;
    max-width: 500px;
  }

  .testimonials-section-content {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .testimonials-list {
    min-width: 100%;
  }

  .testimonials-card {
    width: 100%;
    max-width: 500px;
    left: 0;
    transform: none;
    position: static;
    margin-bottom: 1.5rem;
  }

  .site-footer-content {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .site-footer-nav {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* For mobile devices */
@media (max-width: 600px) {
  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .hero-title,
  .section-title-heading,
  .deals-section-heading,
  .blog-section-heading,
  .newsletter-title {
    font-size: 1.5rem !important;
  }

  .hero-content {
    gap: 1rem;
  }

  .explore-form-form,
  .form-inputs {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .form-group {
    min-width: unset;
    width: 100%;
  }

  .section-title-element,
  .newsletter-element,
  .newsletter-group,
  .testimonials-section-title-element {
    display: none;
  }

  .vacation-steps,
  .cards-list,
  .deals-cards,
  .blog-list {
    gap: 1rem;
  }

  .vacation-step,
  .best-vacation-card,
  .card,
  .blog-card {
    min-width: unset;
    width: 100% !important;
    max-width: 100%;
    padding: 1rem;
  }

  .newsletter-content {
    padding: 1rem 0.5rem;
    border-radius: 20px;
    height: auto;
    gap: 1rem;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 0.5rem;
    gap: 0.5rem;
  }

  .newsletter-input-group {
    width: 100%;
    padding: 0.5rem;
  }

  .site-footer-content {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .site-footer-legal {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .site-footer-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .testimonials-section-content {
    gap: 1rem;
  }

  .testimonials-card {
    padding: 1rem;
  }
}

/* =======================
   General Utilities
======================= */

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Best vacation card image fill utility */
.best-vacation-card {
  padding: 0;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Best vacation card content layout */
.best-vacation-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.best-vacation-card-details {
  width: 90%;
  font-size: 1.5rem;
}

.best-vacation-card-location {
  font-weight: 500;
}

.best-vacation-card-info {
  width: 90%;
}

.card-plan {
  font-size: 1rem;
}

.best-vacation-card-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.best-vacation-card-rating {
  font-size: 1rem;
}

/* End of file */

