/* Custom styles for SLBANZ website */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e4b602;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4a602;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom button hover effects */
.btn-primary {
    background-color: #e4b602;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    border: 2px solid #e4b602;
}

.btn-primary:hover {
    background-color: white;
    color: #e4b602;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 182, 2, 0.3);
}

.btn-secondary {
    background-color: white;
    color: #e4b602;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    border: 2px solid #e4b602;
}

.btn-secondary:hover {
    background-color: #e4b602;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 182, 2, 0.3);
}

/* Animation for hero section */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Card hover effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Navigation active state */
.nav-link.active {
    color: #e4b602;
    border-bottom: 2px solid #e4b602;
}

/* Tab styles */
.tab-button {
    transition: all 0.2s ease-in-out;
}

.tab-button.active {
    background-color: #e4b602;
    color: white;
}

.tab-button:not(.active):hover {
    background-color: #e4b602/10;
    color: #e4b602;
}

/* Tab content transitions */
.tab-content {
    transition: opacity 0.3s ease-in-out;
}

.tab-content.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Responsive text sizing */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
}




