/* CSS Document */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    scroll-behavior: smooth;
}

.copySub {
	font-size: .8em;
	color: slategray;
	text-align: center;
	font-weight: 200;
}

.ctaBTN {
	font-size: 2.5em;
}

.hero-section {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.form-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    transition: opacity 2s ease;
}

.form-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.form-container {
    background: rgba(4, 40, 72, 0.8);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    position: relative;
}

.error-message {
    font-size: 0.9em;
    margin-top: 5px;
    display: block;
}

#formMessage {
    font-size: 1.1em;
    font-weight: 500;
}

#formMessage.success {
    color: #28a745;
}

#formMessage.error {
    color: #dc3545;
}

.spinner {
    margin-top: 10px;
    text-align: center;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.nav-pills .nav-link {
    font-weight: 600;
    color: #333;
    padding: 10px 20px;
}

.nav-pills .nav-link.active {
    background-color: #007bff;
    color: #fff;
}

section {
    padding: 60px 0;
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 80px 0;
        min-height: 400px;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .form-container {
        width: 95%;
        max-width: 400px;
    }
    #formMessage {
        font-size: 1em;
    }
}

button, input {
	border-radius: 18px !important;
	border-color: #BEA015 !important;
}

