/* Color Palette */
:root {
    --wa-green: #25D366;
    --wa-dark: #121b22;
    --cream: #fcf5eb;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    background-color: var(--cream);
}

.bg-cream {
    background-color: var(--cream);
}

/* Navbar */
.navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-link {
    color: #333 !important;
    font-size: 0.9rem;
    margin: 0 10px;
}

/* Hero Section */
.hero-section {
    background-color: var(--wa-dark);
    min-height: 80vh;
    padding: 80px 0;
}

.btn-whatsapp {
    background-color: var(--wa-green);
    color: white;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.2s;
}

.btn-whatsapp:hover {
    background-color: #1eb954;
    color: white;
    transform: translateY(-2px);
}

/* Feature Cards */
.feature-card img {
    max-height: 250px;
    object-fit: contain;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}
/* Color and Link Utilities */
.bg-cream {
    background-color: #fcf5eb;
}

.btn-link-custom {
    color: #25D366;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.btn-link-custom:hover {
    border-bottom-color: #25D366;
}

/* News Card Hover Animation */
.news-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.card-img-container {
    overflow: hidden;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
}

.news-card img {
    transition: transform 0.5s ease;
}

.news-card:hover img {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

/* Image Reveal/Float Effect */
.reveal-img {
    transition: 0.5s ease;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

.reveal-img:hover {
    transform: scale(1.02);
}

/* Detail Features Grid Typography */
.detail-feature h5 {
    font-size: 1.1rem;
    margin-top: 15px;
}

.detail-feature p {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Footer Styles */
.footer-section {
    background-color: #fcf5eb;
    /* Matches the theme cream background */
}

.footer-link {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.footer-link:hover {
    color: #25D366;
    /* WhatsApp Green on hover */
    transform: translateY(-2px);
}

.footer-sublink {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-sublink:hover {
    color: #333;
    text-decoration: underline;
}

/* Ensure icons are aligned (requires Bootstrap Icons CDN) */
.footer-link i {
    font-size: 1.1rem;
}

/* Responsive spacing for mobile */
@media (max-width: 768px) {
    .footer-section .gap-4 {
        gap: 1.5rem !important;
        justify-content: center;
    }

    .footer-section {
        text-align: center;
    }
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
}