/* Primary Colors */
:root {
    --primary-color: #34495e; /* Vermillion */
    --secondary-color: #D3D3D3; /* Dark Gray */
    --accent-color: #4CAF50; /* Gold */
    --background-color: #F5F5F5; /* White */
	--hover-color: #388E3C;
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color); /* Light gray background for contrast */
}

/* Header */
.header {
    background-color: var(--primary-color); /* Primary color */
    color: white;
    text-align: left;
    padding: 2px 10px;
}

.header a {
    color: white;
    text-decoration: none;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    background-size: cover;
    padding: 20px;
    height: 300px;
	background: linear-gradient(to right, rgba(52, 73, 94, 1.0), rgba(52, 73, 94, 0.95) 30%, rgba(52, 73, 94, 0.7) 70%, rgba(52, 73, 94, 0.4)), url('images/img3.png') no-repeat center center;
    /*animation: cycleBackground 15s infinite alternate;*/
}

@keyframes cycleBackground {
    0% {
		background: linear-gradient(to right, rgba(52, 73, 94, 1.0), rgba(52, 73, 94, 0.95) 30%, rgba(52, 73, 94, 0.7) 70%, rgba(52, 73, 94, 0.4)), url('images/img3.png') no-repeat center center;
    }
    50% {
		background: linear-gradient(to right, rgba(52, 73, 94, 1.0), rgba(52, 73, 94, 0.95) 30%, rgba(52, 73, 94, 0.7) 70%, rgba(52, 73, 94, 0.4)), url('images/img2.png') no-repeat center center;
    }
    100% {
		background: linear-gradient(to right, rgba(52, 73, 94, 1.0), rgba(52, 73, 94, 0.95) 30%, rgba(52, 73, 94, 0.7) 70%, rgba(52, 73, 94, 0.4)), url('images/img1.png') no-repeat center center;
    }
}

.hero-text {
    flex: 1;
    padding: 0 50px;
    color: white;
}

.hero-image {
    flex: 1;
    text-align: left;
    overflow: hidden; /* Ensures image does not overflow */
}

.hero-image img {
    width: 400px;
    height: 250px;
    object-fit: cover; /* Ensures the image covers the entire space */
    border-radius: 25px; /* Adds rounded corners to the image */
    border: 5px solid white; /* Adds a border around the image */
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    background-color: var(--accent-color); /* Distinct gold color */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: var(--hover-color); /* Darker gold for hover effect */
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: 10px;
    background-color: var(--background-color);
    border-radius: 10px;
    margin: 20px;
}

.features .feature {
    text-align: center;
    margin-bottom: 20px;
}

.features .feature img {
    width: 256px;
    height: 256px;
    border-radius: 15px;
    border: 3px solid var(--primary-color); /* Border to match theme */
}

.features .feature h2 {
    font-size: 1.5em;
    margin: 0px 0;
    color: var(--primary-color); /* Primary color */
}

.features .content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.features .subfeature {
    padding: 0px;
    text-align: center;
    margin: 10px;
    color: var(--primary-color);
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
}

.features .divider {
    width: 30%;
    margin: 20px auto;
    border-top: 1px solid var(--primary-color); /* Primary color */
}

/* Partners Section */
.partners {
    padding: 20px;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.partners h2,
.partners h3 {
    color: white;
}

.partners .partner {
    display: inline-block;
    margin: 0 20px;
}

.partners .partner img {
    height: 70px;
    border-radius: 30%;
    border: 3px solid var(--primary-color); /* Primary color */
}

.partners .divider {
    width: 50%;
    margin: 20px auto;
    border-top: 1px solid white; /* Primary color */
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 10px 0;
}

footer .social-media-icons {
    margin: 10px 0;
}

footer .social-media-icons a {
    margin: 0 10px;
    text-decoration: none;
    color: white;
    font-size: 24px;
}

footer .social-media-icons a:hover {
    color: var(--primary-color); /* Primary color */
}

footer .social-media-icons img {
    width: 24px;
    height: 24px;
}

/* More Info Section */
.moreinfo {
    background: var(--background-color);
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
    text-align: center;
}

.moreinfo h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--primary-color); /* Primary color */
}

.moreinfo form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.moreinfo button {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    background-color: var(--primary-color); /* Primary color */
    color: white;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.moreinfo button:hover {
    background-color: #b3312b; /* Darker shade of primary color */
    transform: scale(1.05);
}

.moreinfo button.cta-button {
    background-color: var(--accent-color); /* Distinct gold color */
    color: white;
    border: none;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 2px;
    cursor: pointer;
    border-radius: 4px;
}

.moreinfo button.cta-button:hover {
    background-color: var(--hover-color);
    transform: scale(1.05);
}

.moreinfo button.secondary-button {
    background-color: #6C757D; /* Gray */
    color: white;
    border: none;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 2px;
    cursor: pointer;
    border-radius: 4px;
}

.moreinfo button.secondary-button:hover {
    background-color: #5A6268; /* Darker gray */
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .features .subfeature {
        flex: 1 1 100%;
    }
}

