.destinations-section {
    padding-bottom: 5rem;
}

.continent-section {
    margin-top: 4rem;
}

.continent-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.destination-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 1rem 2rem;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
  }
  .logo img {
    height: 36px;
    width: 36px;
  }
  nav ul {
    display: flex;
    list-style: none;
  }
  nav li {
    margin: 0 10px;
  }
  nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 6px;
  }
  nav a:hover {
    background-color: #0077cc;
    color: #fff;
  }
.card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    flex: 1 1 calc(25% - 30px); /* 👈 4 cards in 1 row */
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.card p {
    color: #555;
    font-size: 0.95rem;
}
.destination-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto; 
}


@media screen and (max-width: 992px) {
    .destination-cards {
        flex-direction: column;
        align-items: center;
    }
}
@media screen and (max-width: 992px) {
    .destination-card {
        flex: 0 1 calc(50% - 20px);
    }
}

@media screen and (max-width: 600px) {
    .destination-card {
        flex: 0 1 100%;
    }
}

