* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

body {
    background: #4a4a4a;
}

.container {
    width: 100%;
    min-height: 100vh;
    background: #4a4a4a;
    padding: 25px 45px;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 70px;
}

.bdlogo {
    height: 35px;
}

nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

/* Main section */
.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.hero-content {
    width: 48%;
    color: white;
}

.eyebrow {
    font-size: 18px;
    margin-bottom: 10px;
}

h1 {
    font-size: 62px;
    margin-bottom: 25px;
    line-height: 1;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.4;
}

.explore-button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 45px;
    background: white;
    color: red;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* Cards */
.destination-grid {
    width: 52%;
    display: grid;
    grid-template-columns: repeat(2, 260px);
    gap: 28px;
    justify-content: center;
}

.card {
    width: 260px;
    height: 300px;
    border-radius: 16px;
    padding: 24px;
    color: white;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    transition: transform 0.3s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.15)
    );
}

.card-content {
    position: relative;
    z-index: 1;
}

.card h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.card p {
    font-size: 16px;
    line-height: 1.3;
}

.card1 {
    background-image: url("saintmartin.jpg");
}

.card2 {
    background-image: url("cox.jpg");
}

.card3 {
    background-image: url("khag.jpg");
}

.card4 {
    background-image: url("rangamati.jpg");
}

.card:hover {
    transform: translateY(-8px);
}

.card-link{
    text-decoration: none;
}

/* Mobile */
@media (max-width: 900px) {
    .row {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content,
    .destination-grid {
        width: 100%;
        text-align: center;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }

    .card {
        margin: auto;
    }

    h1 {
        font-size: 45px;
    }
}
