@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1a3a5f;
    --secondary: #ffcc00;
    --accent: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    scroll-behavior: smooth;
}

.bg-primary { background-color: var(--primary); }
.text-primary { color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.text-secondary { color: var(--secondary); }

.navbar-sticky {
    @apply fixed top-0 w-full z-50 transition-all duration-300;
}

.navbar-scrolled {
    @apply bg-white shadow-md py-2;
}

.hero-gradient {
    background: linear-gradient(rgba(26, 58, 95, 0.8), rgba(26, 58, 95, 0.8)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.btn-primary {
    @apply bg-primary text-white px-6 py-3 rounded-lg font-semibold hover:bg-opacity-90 transition-all;
}

.btn-secondary {
    @apply bg-secondary text-primary px-6 py-3 rounded-lg font-semibold hover:bg-opacity-90 transition-all;
}

/* Animations */
[data-aos] {
    pointer-events: none;
}
.aos-animate {
    pointer-events: auto;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Scroll to Top Button */
#scrollTop {
    position: fixed;
    bottom: 110px;
    right: 40px;
    display: none;
    z-index: 99;
    @apply bg-primary text-white w-10 h-10 rounded-full flex items-center justify-center transition-all duration-300 cursor-pointer shadow-lg hover:bg-opacity-80;
}
