* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Mona Sans", sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .navbar {
    background-color: #2c3e50;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-logo h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  .nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: #3498db;
    background-color: rgba(52, 152, 219, 0.1);
  }
  
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url("./media/hero_background.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin: 0;
    padding: 0;
    position: relative;
  }
  
  .hero-content {
    max-width: 800px;
    padding: 2rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
  
  .search-container {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .search-input {
    flex: 1;
    padding: 15px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 25px;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .search-btn {
    padding: 15px 30px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .search-btn:hover {
    background-color: #2980b9;
  }
  
  .cta-button {
    background-color: #e74c3c;
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
  
  .recommendations {
    padding: 4rem 0;
    background-color: #f8f9fa;
    min-height: 200px;
  }
  
  .recommendations-content {
    text-align: center;
  }
  
  .recommendations h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
  }
  
  .destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .destination-card:hover {
    transform: translateY(-5px);
  }
  
  .destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  .destination-card h3 {
    padding: 1.5rem;
    font-size: 1.3rem;
    color: #2c3e50;
  }
  
  .no-results {
    text-align: center;
    padding: 3rem;
    color: #7f8c8d;
    font-size: 1.1rem;
  }
  
  .about-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url("./media/about_background.jpg") center center / cover no-repeat;
  }
  
  .about-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .about-content h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #fafbfc;
  }
  
  .about-card {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .about-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #3498db;
  }
  
  .about-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
  }
  
  .contact-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("./media/contact_background.jpg") center center / cover no-repeat;
  }
  
  .contact-content {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-content h1 {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #fbfcfd;
  }
  
  .contact-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #ffffff;
    line-height: 1.8;
  }
  
  .contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2c3e50;
  }
  
  .form-input,
  .form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
  }
  
  .form-input:focus,
  .form-textarea:focus {
    outline: none;
    border-color: #3498db;
  }
  
  .form-textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .submit-btn {
    background-color: #3498db;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
  }
  
  .submit-btn:hover {
    background-color: #2980b9;
  }
  
  .contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .contact-info h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.5rem;
  }
  
  .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .contact-method {
    font-size: 1rem;
    color: #555;
  }
  
  .footer {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .social-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .social-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .social-link:hover {
    color: #3498db;
  }
  
  @media (max-width: 768px) {
    .nav-container {
      flex-direction: column;
      gap: 1rem;
    }
  
    .nav-menu {
      gap: 1rem;
    }
  
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-description {
      font-size: 1rem;
    }
  
    .search-container {
      flex-direction: column;
      gap: 15px;
    }
  
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
  
    .about-content h1,
    .contact-content h1 {
      font-size: 2.5rem;
    }
  
    .about-card,
    .contact-form,
    .contact-info {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 2rem;
    }
  
    .container {
      padding: 0 15px;
    }
  
    .nav-container {
      padding: 0 15px;
    }
  }