/* Custom CSS for Howard Engineering */

:root {
    --primary-teal: #1F3B46;
    --accent-orange: #F15A29;
    --soft-stone: #F3EEE6;
    --mist-blue: #A5C4D2;
    --steel-blue: #476A83;
    --concrete-grey: #7A7F87;
    --industrial-khaki: #A48754;
    --body-font: 'Plus Jakarta Sans', sans-serif;
    --heading-font: 'Raleway', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--primary-teal);
    background-color: #fff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

h1 {
    font-size: calc(1.475rem + 2.7vw);
}

a{
 color: inherit;
}
a:hover{
 text-decoration: none;
}

.text-accent {
    color: var(--accent-orange);
}

.bg-dark-teal {
    background-color: var(--primary-teal);
}

.bg-light-stone {
    background-color: var(--soft-stone);
}

.bg-teal-accent {
    background-color: var(--steel-blue);
}

.border-accent {
    border-color: var(--accent-orange) !important;
}

.font-heading {
    font-family: var(--heading-font) !important;
}

.text-teal {
    color: var(--primary-teal) !important;
}

.text-steel-blue {
    color: var(--steel-blue) !important;
}

/* Navigation */
.nav-link {
    font-family: var(--heading-font);
    font-weight: 500;
    color: var(--primary-teal) !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--accent-orange) !important;
}

.btn-primary {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
    background-color: #d64a1e !important;
    border-color: #d64a1e !important;
    color: #fff !important;
    box-shadow: none !important;
}

/* Sections */
.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-orange);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background-color: var(--primary-teal);
    background-image: linear-gradient(rgba(31, 59, 70, 0.7), rgba(31, 59, 70, 0.7)), url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    display: flex;
    align-items: center;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: -10%;
    width: 120%;
    height: 100%;
    background-image: url('assets/pattern.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: -1;
    background-position: bottom;
}

/* Service Item */
.service-item {
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-orange) !important;
}

/* Triangle Background Pattern for Dark Section */
.triangle-bg {
    position: relative;
    overflow: hidden;
}

/* Section Reveal Animation */
section.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

section.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form Styles */
.form-control:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.25rem rgba(241, 90, 41, 0.1);
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: 80vh;
        text-align: center;
    }
    

    /* .hero-section .btn {
        width: 100%;
    } */
}