/* Header Styles */
/* Remove default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  max-width: 1200px;
  margin: auto;
}

.logo a {
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
  color: #003B95;
  letter-spacing: 1px;
}

.logo span {
  color: #FFD700;
}

/* Navigation Styles */
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav ul li {
  margin-left: 25px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #003B95;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.main-nav ul li a:hover {
  color: #FFD700;
}

/* Mobile Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #003B95;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .main-nav ul {
    flex-direction: column;
    padding: 15px 20px;
  }

  .main-nav ul li {
    margin: 10px 0;
  }

  .main-nav.show {
    display: block;
  }
}

.madrid-hero {
  background: url('tr-1.jpg') center center/cover no-repeat;
  height: 55vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.3);
  padding: 40px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 1500px; /* Increased width */
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 40px 50px; /* Increased padding for a more spacious look */
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.hero-content h1 {
  font-size: 48px;
  color: #222;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  color: #333;
  margin-bottom: 25px;
}

.trip-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.month-select {
  padding: 12px 20px;
  font-size: 16px;
  border: 2px solid #ffa500;
  border-radius: 8px;
  min-width: 220px;
  background-color: #fff;
}

.plan-btn {
  padding: 12px 25px;
  background-color: #ffa500;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.plan-btn:hover {
  background-color: #e69500;
}

.about-section {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.row-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.about-text {
  flex: 0 0 70%;
  max-width: 70%;
}

.about-text h2 {
  font-size: 28px;
  color: #003B95;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

.about-image {
  flex: 0 0 30%;
  max-width: 30%;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .about-text,
  .about-image {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-text h2 {
    font-size: 24px;
  }
}
.calendar-tour-wrapper {
  padding: 40px 15px;
  background: #f8f8f8;
}

.calendar-tour {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

/* Tour Info Box */
.tour-info-box {
  background: #990099;
  color: white;
  padding: 25px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
}

.tour-info-box h3 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.tour-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tour-item i {
  font-size: 20px;
  color: #ffd700;
  margin-top: 4px;
}

.tour-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

hr {
  border: none;
  border-top: 1px solid #fff3;
  margin: 15px 0;
}

/* Calendar Box */
.calendar-box {
  background: #fff;
  border: 2px solid #990099;
  border-radius: 10px;
  max-width: 420px;
  width: 100%;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.calendar-header {
  text-align: center;
  background: #990099;
  color: white;
  padding: 12px;
  font-weight: bold;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 16px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.day-label {
  text-align: center;
  font-weight: bold;
  color: #555;
  font-size: 14px;
}

.day {
  background: #990099;
  color: white;
  padding: 10px 0;
  text-align: center;
  border-radius: 6px;
  font-size: 14px;
}

.today {
  background: #ff9999;
  color: #222;
}

.empty {
  background: transparent;
  box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
  .calendar-tour {
    flex-direction: column;
    align-items: center;
  }

  .tour-info-box,
  .calendar-box {
    max-width: 100%;
  }
}
.trip-ideas-section {
  padding: 60px 20px;
  background: #fff;
}

.trip-ideas-section h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 5px;
}

.trip-ideas-section .subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.trip-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.trip-card:hover {
  transform: translateY(-5px);
}

.trip-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.badge {
  background: #db1453;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
  position: absolute;
  margin: 12px;
  top: 0;
  display: inline-block;
}

.trip-content {
  padding: 16px;
  position: relative;
}

.trip-content .days {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
}

.trip-content h3 {
  font-size: 18px;
  margin: 5px 0 10px;
}

.trip-content .desc {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.5;
}

.trip-link {
  font-weight: bold;
  color: #ff6b00;
  text-decoration: none;
  font-size: 14px;
}

.trip-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .trip-ideas-section h2 {
    font-size: 24px;
  }

  .trip-content h3 {
    font-size: 16px;
  }

  .trip-link {
    font-size: 13px;
  }
}
.beautiful-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #003B95;
  margin-bottom: 15px;
}

.brand-highlight {
  color: #e26a00;
  font-weight: bold;
}

.intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 16px;
  color: #333;
}

.day-box,
.stay-box,
.family-box,
.booking-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.day-box h3,
.stay-box h3,
.family-box h3,
.booking-box h3 {
  color: #003B95;
  font-size: 22px;
  margin-bottom: 15px;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #444;
}

.booking-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 18px;
  padding: 0;
  list-style: none;
}

.booking-icons li {
  background: #003B95;
  color: #fff;
  padding: 10px 15px;
  border-radius: 25px;
  font-weight: bold;
}

.contact-note {
  margin-top: 20px;
  font-size: 15px;
}

.contact-note a {
  color: #e26a00;
  font-weight: bold;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .booking-icons {
    flex-direction: column;
  }
}
.cta-footer {
  background: url('assets/img/spain-cta.jpg') center center/cover no-repeat;
  padding: 80px 20px;
  text-align: center;
  border-radius: 12px;
  color: white;
  position: relative;
  margin-top: 40px;
}

.cta-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #fff;
}

.cta-content h2 span {
  color: #ffd700;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.cta-btn {
  background: #ff7a00;
  padding: 12px 30px;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #e66900;
}

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }
}
