body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 170vh;
    background-image: url('../images/destination.jpg');
    background-size: cover;
    background-position: bottom;
    position: relative;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin: 30px;
}

.page-title {
    text-align: center;
    padding: 30px 20px;
    font-size: 2.5rem;
    background-color: #feb47b;
    color: white;
    margin: 0;
}

.page-title-domestic {
    text-align: center;
    padding: 30px 20px;
    font-size: 2.5rem;
    background-color: gray;
    color: white;
    margin: 0;
}

.destination-grid-domestic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    background: linear-gradient(to bottom, gray, #feb47b);

    
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    background: linear-gradient(to bottom,#feb47b, #2a2a2a);

    
}

.destination-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-card .card-content {
    padding: 15px;
}

.destination-card .card-content h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.destination-card .card-content p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #666;
}

.destination-card .card-content .temperature {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: bold;
    color: #0074D9;
}

.temperature {
    font-size: 20px;
    font-weight:lighter;
    color:blue;
  }

  .destination-link {
    min-width: 300px;
    margin: 10px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    text-decoration: none; /* Removes underline */
    display: block; /* Makes the entire card clickable */
    color: inherit; /* Keeps default text color */
    transition: transform 0.3s ease;
}

.destination-link:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}
  