/* Reset y estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* Header Styles */
.contact-bar {
  background: #333 !important;
  padding: 8px 20px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-left {
  display: flex;
  gap: 15px;
}

.contact-left a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-left a:hover {
  color: #ff6600;
}

.contact-right {
  color: white;
}

.contact-right a {
  color: #ff6600;
  text-decoration: none;
}

.header-menu {
  background: black;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #ff6600;
}

.header-logo {
  height: 150px;         /* tamaño que te gustó */
  width: auto;
  margin-top: -25px;     /* mueve hacia arriba para centrar visualmente */
    filter: drop-shadow(0 0 7px rgba(255, 165, 0, 0.5)); 
  
  /* 3. Preparamos una transición suave para el efecto hover */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-link {
   display: flex;
  align-items: center;
  height: 100%;
  margin: 0 auto;
  position: relative;
  left: 0;
  right: 0;
}

.nav-main {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-items {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-items a {
  text-decoration: none;
  color:white;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.nav-items a:hover {
  color: #ff6600;
}

.nav-icon {
  color: #ff6600;
}

/* Hero Section */
.hero-excursions {
  background: #333 !important;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero-excursions h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-excursions p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Filters Section */
.filters-section {
  background: white;
  padding: 30px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.filters-container {
  max-width: 1200px;
  margin: 0 auto;
}

.search-bar {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.search-input {
  flex: 1;
  min-width: 300px;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.search-input:focus {
  border-color: #ff6600;
}

.search-btn {
  background: #ff6600 !important;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s;
}

.search-btn:hover {
  transform: translateY(-2px);
}

.filter-categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.category-btn {
  background: transparent;
  border: 2px solid #ff6600 !important;
  color: #ff6600 !important;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.category-btn.active,
.category-btn:hover {
  background: #ff6600 !important;
  color: white !important;
}

/* Excursions Grid */
.excursions-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.excursions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.excursion-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.excursion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 102, 0, 0.05));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.excursion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 102, 0, 0.2);
}

.excursion-card:hover::before {
  opacity: 1;
}

.excursion-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s;
}

.excursion-card:hover img {
  transform: scale(1.05);
}

.card-content {
  padding: 25px;
  position: relative;
  z-index: 2;
}

.card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.4;
}

.location {
  color: #666;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.rating {
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #ffa500;
}

.description {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.price {
  font-size: 1.1rem;
  color: #ff6600;
  font-weight: bold;
}

.price strong {
  font-size: 1.3rem;
}

/* Load More Button */
.load-more-container {
  text-align: center;
  margin: 40px 0;
}

.load-more-btn {
  background: #ff6600 !important;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

/* Footer Styles */
.site-footer {
  background: #333 !important;
  color: white;
  padding: 50px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.newsletter h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.newsletter input {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 25px;
  margin: 15px 0;
}

.subscribe-btn {
  background: #ff6600 !important;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.icon-facebook { background: #3b5998; }
.icon-instagram { background: #e1306c; }

.social-icons a:hover {
  transform: translateY(-3px);
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info a {
  color: #ff6600;
  text-decoration: none;
}

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
}

.footer-column h5 {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #ff6600;
}

.footer-bottom-bar {
  background: rgba(0,0,0,0.3);
  text-align: center;
  padding: 15px 0;
  color: #ccc;
}

.privacy-note {
  font-size: 0.8rem;
  color: #ccc;
  margin-top: 10px;
}

.privacy-note a {
  color: #ff6600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-main {
    display: none;
  }

  .hero-excursions h1 {
    font-size: 2.5rem;
  }

  .search-bar {
    flex-direction: column;
    align-items: center;
  }

  .search-input {
    min-width: auto;
    width: 100%;
  }

  .filter-categories {
    justify-content: center;
  }

  .excursions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-excursions {
    padding: 60px 20px;
  }

  .hero-excursions h1 {
    font-size: 2rem;
  }

  .card-content {
    padding: 20px;
  }
}