@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #002B5B;
    --accent: #25D366;
    --secondary: #3b82f6;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
    color: #1e293b;
}

/* Navbar Scrolled State */
#navbar.scrolled {
    @apply shadow-xl border-none;
    height: 4rem;
}

/* Ice Machine Card Hover */
.ice-machine-card {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ice-machine-card:hover {
    transform: scale(1.01);
}

/* Service Card Hover */
.service-card {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
}

/* Pricing Card Shadow Pulse */
.pricing-card {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Custom Table Responsiveness */
@media (max-width: 768px) {
    th, td {
        padding: 1rem 0.5rem !important;
        font-size: 0.85rem;
    }
    .hero-content h1 {
        font-size: 2.75rem;
        line-height: 1.1;
    }
}

/* Smooth Gradient for Loyalty Section */
.loyalty-bg {
    background: radial-gradient(circle at top right, #1e40af, #002B5B);
}

/* Text Balance Utility */
.text-balance {
    text-wrap: balance;
}

/* Custom Selection Color */
::selection {
    background: var(--accent);
    color: white;
}
