:root {
    --primary-color: #0056b3;
    --secondary-color: #ffcc00;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --white-color: #ffffff;
    
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
}

/* Global Styles */
body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1, h2, h3, .title, .brand-text {
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.subtitle {
    font-family: var(--font-body);
    font-weight: 300;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
}

.brand-text {
    color: var(--primary-color) !important;
    font-size: 2rem !important;
}

.navbar-item {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
}

.navbar-item:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1519003722824-192d992a6058?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem) !important;
    color: var(--white-color) !important;
    line-height: 1;
}

.hero .subtitle {
    color: var(--white-color) !important;
    max-width: 600px;
    font-size: 1.5rem;
}

/* Cards & Features */
.feature-card {
    height: 100%;
    transition: var(--transition);
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.has-text-primary {
    color: var(--primary-color) !important;
}

.button.is-primary {
    background-color: var(--primary-color);
}

.button.is-primary:hover {
    background-color: #004494;
}

/* Sections */
.section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

/* Footer */
.footer {
    padding: 4rem 1.5rem 2rem;
}

.footer .title {
    color: var(--white-color);
}

/* Animations (GSAP Targets) */
.hero-content {
    opacity: 0;
}

.feature-card {
    opacity: 0;
}

.section-about .column {
    opacity: 0;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}
