/* Button Container Styles */
.btn-container {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    align-items: center; /* Center buttons horizontally */
    gap: 15px; /* Add vertical spacing between buttons */
    margin-top: 20px; /* Add some space above the container (optional) */
}



/* General Button Styles */
.btn {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically center the text */
    justify-content: center; /* Horizontally center the text */
    padding: 0; /* Remove padding to avoid misalignment */
    border: none;
    color: white;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth hover effects */
    text-decoration: none;
    box-sizing: border-box; /* Include border in width/height calculations */
    font-weight: bold;
}

/* Hover Effect */
.btn:hover {
    background-color: #0056b3;
    transform: scale(1.01); /* Slight hover scaling effect */
}

/* Primary Large Button */
.btn-primary-large {
    background-color: #ff3951;
    width: 300px; /* Fixed width for desktop */
    height: 40px;
    font-size: 1.2rem; /* Larger font size */
    line-height: normal; /* Ensures the line height doesn’t interfere */
}

.btn-primary-large:hover {
    background-color: #565e64;
}

/* Secondary Large Button */
.btn-secondary-large {
    background-color: #14142b;
    width: 300px;
    height: 40px;
    font-size: 1.2rem;
    line-height: normal;
}

.btn-secondary-large:hover {
    background-color: #565e64;
}

/* Primary Small Button */
.btn-primary-small {
    background-color: #ff3951;
    padding: 8px 16px;
    font-size: 0.9rem;
    line-height: normal;
}

.btn-primary-small:hover {
    background-color: #565e64;
}

/* Secondary Small Button */
.btn-secondary-small {
    background-color: #14142b;
    padding: 8px 16px;
    font-size: 0.9rem;
    line-height: normal;
}

.btn-secondary-small:hover {
    background-color: #565e64;
}



/* Tertiary Learn More */
.btn-tertiary {
    text-decoration: none;
    color: #14142b;
}



/* Submit Button */
#contact-form .btn {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #ff3951;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

#contact-form .btn:hover {
    background-color: #0056b3;
}


/* Sticky Footer */
.sticky-footer a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    width: 150px;
    transition: background-color 0.2s;
    font-weight: bold;
    display: flex; /* Use flexbox to align the text */
    align-items: center; /* This will vertically center the text */
    justify-content: center; /* This will horizontally center the text */
    height: 50%; /* Adjust the height as needed */
}


/* Responsive Design for Hero Section */
@media (min-width: 768px) {

    .btn-container {
        align-items: flex-start; /* Align buttons to the left */
        margin-top: 20px; /* Add some space above the container (optional) */
    }

}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
    .btn-container {
        padding-bottom: 40px;
        align-items: flex-start; /* Align buttons to the left */
    }

    #hero-buttons  {
        align-items: center; /* Align buttons to the left */
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%; /* Full-width buttons on smaller screens */
        max-width: 350px; /* Prevent overflow */
        height: auto; /* Let height adjust for content */
        height: 40px;
    }

    #header-cta-button {
        display: none;
    }
}


