﻿/* --------------- Hero Section Styles --------------- */
.hero-section {
    position: relative;
    padding: 4rem 1rem 6rem;
    text-align: center;
    background: #ffffff; /* white background for the new navbar */
    overflow: hidden;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #003b5c; /* dark blue (brand) */
    line-height: 1.2;
    margin-bottom: 1rem;
}

    .hero-title .accent {
        color: #e65c0d; /* orange (brand) */
    }

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: #555;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Primary button */
.btn-primary {
    background-color: #003b5c;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

    .btn-primary:hover {
        background-color: #e65c0d;
        transform: translateY(-2px);
    }

/* Outline button */
.btn-outline {
    border: 2px solid #003b5c;
    color: #003b5c;
    padding: 0.65rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-outline:hover {
        background-color: #e65c0d;
        color: #fff;
        border-color: #e65c0d;
        transform: translateY(-2px);
    }

/* Decorative SVG wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    fill: #f8f9fa;
}
