/* --- General & Typography --- */
body {
    font-family: 'Kanit', sans-serif;
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar .nav-link {
    font-weight: 500;
}

a {
    text-decoration: none;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1624636906479-3933c05c35f7?q=80&w=1974&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
}

/* --- Package Card --- */
.package-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.package-card-img-container {
    position: relative;
}

.badge-sale {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #dc3545;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* --- Why Us Section --- */
.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

/* --- Package Detail Page --- */
.package-details-content ul {
    padding-left: 20px;
}

.package-details-content li {
    margin-bottom: 10px;
}

.sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 100px; /* Adjust based on navbar height */
}

/* --- Footer --- */
footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #0d6efd !important;
}
