* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0b0e14;
    color: #ffffff;
    line-height: 1.6;
}

header {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(11,14,20,1)), 
                url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.logo {
    position: absolute;
    top: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.logo span {
    color: #00d4ff;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #a0a0a0;
}

.destinations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 10%;
    margin-top: -50px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #00d4ff;
}

.card-body p {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 20px;
    min-height: 60px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00d4ff;
    color: #0b0e14;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #ffffff;
}

footer {
    text-align: center;
    padding: 40px;
    color: #555;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .destinations { padding: 50px 5%; }
}