* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
body { background-color: #f0f2f5; color: #333; }

/* Navigation */
.navbar { display: flex; justify-content: space-between; align-items: center; background: #ffffff; height: 80px; padding: 0 5%; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.logo img { height: 50px; object-fit: contain; cursor: pointer; }
.nav-links { display: flex; list-style: none; }
.nav-links li a { text-decoration: none; color: #222; font-weight: 700; font-size: 14px; margin: 0 15px; transition: 0.3s; }
.nav-links li a:hover { color: #ffb606; }

/* Subscribe Button */
.subscribe-btn { background: #e41e3f; color: #fff; padding: 10px 24px; text-decoration: none; font-weight: bold; border-radius: 6px; transition: 0.3s; display: inline-block; cursor: pointer; border: none; font-size: 15px; }
.subscribe-btn:hover { background: #c71633; transform: scale(1.05); }

/* Hero Section */
.hero { position: relative; height: 450px; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-text h1 { font-size: 50px; color: #ffffff; font-weight: 900; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.hero-text span.highlight { background: #ffb606; padding: 2px 15px; color: #ffffff; border-radius: 4px; }

/* Destinations Grid & Cards */
.section { padding: 60px 5%; text-align: center; }
.section-title h2 { font-size: 32px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }
.title-line { width: 60px; height: 4px; background: #e41e3f; margin: 0 auto 40px; border-radius: 2px; }

.destinations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; text-align: left; }
.card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: 0.3s; display: flex; flex-direction: column; cursor: pointer; }
.card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 20px; flex-grow: 1; }
.card-body h3 { font-size: 20px; margin-bottom: 10px; color: #222; }
.card-body p { font-size: 14px; color: #666; line-height: 1.6; }

/* Interaction Footer (Likes & Views) */
.card-footer { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border-top: 1px solid #eee; background: #fafafa; }
.view-count { font-size: 14px; color: #555; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.like-btn { background: none; border: none; font-size: 15px; color: #555; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 5px; transition: 0.2s; }
.like-btn.liked { color: #e41e3f; }
.like-btn:hover { transform: scale(1.1); }

footer { background: #1a1a1a; color: #777; padding: 40px 5%; text-align: center; font-size: 14px; }

/* Mobile Responsiveness */
@media(max-width: 768px) {
    .nav-links { display: none; }
    .hero { height: 350px; }
    .hero-text h1 { font-size: 32px; }
    .subscribe-btn { padding: 8px 18px; font-size: 13px; }
}
