/* CQ App Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*background-color: #008;*/
    background-image: url('../assets/images/cqappsBG2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}


/* Announcement Banner */
.announcement {
    background-color: #880000;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 1.0em;
    transition: font-size 0.3s ease;
    text-decoration: none;
}

.announcement:hover {
    font-size: 1.2em;
    color: #c2a468
}

.announcement a {
    color: inherit;
    text-decoration: none;
}

/* Header Styles */
header {
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    padding: 20px;
    text-align: center;
    min-height: 80px;
    max-height: 110px;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    vertical-align: middle;
    font-size: 1.0em;
    margin: 10px auto;
    transition: font-size 0.3s ease;
    flex-direction: row;
}

header img {
    width: 300px;
    height: 100px;
}

header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    color: #fff;
    font-size: 1.0em;
}

header nav ul li {
    margin: 0 10px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

header nav ul li a:hover {
    font-weight: bold;
    font-size: 1.2em;
}
/* Hero Section */
.hero {
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    min-height: 500px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: left;
    width: 100%;
    margin-bottom: 20px;
}

.hero-text, .hero-image {
    width: 45%;
}

.hero-text {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
}

.hero-text h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: left;
}

.hero-text p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Get Started Button */
.getStartedButton {
    margin-top: 20px;
    width: 150px;
    height: 40px;
    border: 2px solid #008;
    border-radius: 10px;
    background-color: #ffde59;
    color: #008;
    font-size: 1.0em;
    cursor: pointer;
}

.getStartedButton:hover {
    font-size: 1.2em;
    font-weight: bold;
}

/* Intro Section */
.intro {
    background-color: rgba(255, 255, 255, 1);
    width: 100%;
    min-height: 500px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: center; /* Center the content horizontally */
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    max-width: 1200px;
    width: 100%; /* Ensure the content takes full width up to max-width */
}

.intro h2 {
    color: #000;
    font-size: 1.4em;
    margin-bottom: 20px;
}

/* Solutions Section
TODO: Add a grid layout to this section */

.solutions {
    background-color: rgba(255, 255, 255, 1);
    width: 100%;
    min-height: 500px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    width: 100%; /* Ensure the content takes full width up to max-width */
}

.solutions-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    max-width: 1200px;
    width: 100%; /* Ensure the content takes full width up to max-width */
}

.solutions img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.solutions h3 {
    color: #000;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.solutions p {
    color: #000;
    font-size: 1.0em;
    margin-bottom: 10px;
}

/* Basic Page Specific Styles */
.basicsHero {
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    min-height: 500px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}

.basicsHero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

.basicsOptIn {
    width: 100%;
    height: 110px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: left;
    background-color: #e6a21a;
}

.basicsOptInContainer {
    max-width: 1200px;
    height: 80px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: space-between;
}

.basicsOptInContainer h2 {
    color: #800;
    font-size: 1.4em;
    text-align: center;
    margin: 0 auto;
    font-weight: bold;
    max-width: 70%;
}

.basicsOptInContainer .button {
    width: 150px;
    height: 40px;
    border: 2px solid #800;
    border-radius: 10px;
    background-color: transparent;
    color: #800;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    line-height: 36px;
    text-align: center;
}

.basicsOptInContainer .button:hover {
    background-color: #800;
    color: #e6a21a;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}