/*
================================
   general settings
================================
*/
.footer {
    background-color: #343a40; /* Dark background for footer */
    color: #FFFFFF;
    text-align: center;
    padding: 20px 0;
}

.footer a {
    color: #FFFFFF;
    margin: 0 10px;
    text-decoration: none;
}

.footer a:hover {
    color: #CF2030;
}


.page-content {
    min-height: calc(100vh - 162px); /* Adjusting for footer height */
    padding-bottom: 20px; /* Optional: Extra space below content before footer */
}

.img-fluid{
    width: 100%;
}

/*
================================
   main page
================================
*/
.company-card {
    width: 100%;
    aspect-ratio: 16/9; /* Keeps a consistent aspect ratio */
    background-color: #CF2030;
    color: #FFFFFF;
    border-radius: 8px;
    margin: 10px 0;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.company-card img {
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
    filter: none;
    transition: filter 0.3s ease;
}

.company-card:hover img {
    filter: grayscale(100%);
}

.company-card:hover {
    border-color: #CF2030;
}

.company-info {
    width: 100%;
    background-color: rgba(207, 32, 48, 0.8);
    box-sizing: border-box;
    text-align: left;
}

.company-info h2 {
    font-size: 1.4em;
    margin: 0;  
	min-height: 100px;
	margin-bottom: 20px;	
	padding: 20px;
}


/*
================================
   buttons
================================
*/

.btn-primary {
    background-color: #CF2030; /* Darker red for submit button */
    border-color: #CF2030;
}
.btn-info {
    background-color: #E57373; /* Lighter red for other buttons */
    border-color: #E57373;
}
.btn-info:hover {
    background-color: #EF9A9A;
    border-color: #EF9A9A;
}
.btn-primary:hover {
    background-color: #D32F2F;
    border-color: #D32F2F;
}