/* --- HOMEPAGE LAYOUT & TYPOGRAPHY --- */
.hero-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #f6f8fa;
    border-radius: 8px;
    margin-bottom: 40px;
}
.hero-section h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}
.tagline {
    font-size: 1.1rem;
    color: #555;
}

/* --- BUTTON STYLING (The core decoration) --- */
.quick-nav {
    display: flex; /* Arranges buttons side-by-side */
    justify-content: center;
    gap: 20px; /* Space between buttons */
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.nav-button {
    /* Base style */
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #333;
    transition: all 0.2s ease-in-out; /* Smooth transition for interaction */
}

.nav-button i {
    margin-right: 10px; /* Space between icon and text */
}

/* INTERACTIVE GESTURE: Hover Effect */
.nav-button:hover {
    background-color: #f0f0f0; /* Slight color change */
    transform: translateY(-2px); /* Lifts the button */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Primary Button Style (Blue Call-to-Action) */
.nav-button.primary {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}
.nav-button.primary:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.3);
}

/* Contact Button */
.contact-cta {
    text-align: center;
    padding: 30px;
    border-top: 1px solid #eee;
}
.cta-button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
}
.cta-button:hover {
    background-color: #1e7e34;
}