/* Grinter Friends | Deontae Wills aka Mely */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #555;
    background-color:hsl(0, 0%, 91%);
}

h1, h2, h3 {
    font-family: 'Libre Baskerville', serif;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Navigation */

nav {
    position: fixed;
    width: 100%;
    background-color: #f8f8f8;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-logo img {
    height: 90px;
    width: 90px;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links ul li {
    font-weight: 600;
}

.nav-links li {
    font-size: large;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

.nav-socials {
    display: flex;
    gap: 15px;
}

.nav-socials i {
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.nav-socials i:hover {
    color: #007bff;
}

/* Main Background */

.header-section {
    position: relative;
    background-color: #2c3e50;
    height: 100vh;
    z-index: 1;
}

.header-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #f8f8f8;
    text-align: center;
    z-index: 2;
}

.header-h1-txt {
    font-size: 2.2rem;
}

.header-h1-txt h1 {
    color: #f8f8f8;
}

.header-p-txt {
    font-size: 1.4rem;
}

/* About Section */

.about-us-main {
    background-color: #fff;
    padding: 100px 0;
}

.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-text {
    width: 70%;
    text-align: center;
}

.about-text h1 {
    font-size: 2.5rem;
}

.about-text p {
    font-size: 1.2rem;
    font-weight: 500;
}

.ab-txt {
    text-align: center;
}

.ab-txt1, .ab-txt2 {
    padding: 20px 80px;
}

/* Middle Section / CTA ;) */

.middle-section {
    background-color: #f8f8f8;
    padding: 50px 0;
}

.middle-text {
    text-align: center;
    font-size: large;
    margin-bottom: 50px;
}

.middle-picture img {
    max-width: 100%;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* What we Do Section */

/* Section Styles */
.what-we-do-section {
    background-color: #fff;
    padding: 200px 0;
}
.what-we-do-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

/* Mission Card Styles */
.mission-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.mission-card {
    background-color: #ffebeb;
    width: 50%;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s;
}


/* Icon Styles */
.icon-container {
    margin-bottom: 15px;
}
.icon-container i {
    font-size: 3rem;
    color: #007bff;
}

/* Text Styling */
.mission-card h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}
.mission-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Footer */

.footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
    text-align: left;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-about,
.footer-links,
.footer-social {
    flex: 1;
    margin: 0 20px;
}

.footer-about h3,
.footer-links h4,
.footer-social h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #007bff;
}

.footer-social .social-icons a {
    margin-right: 15px;
    font-size: 1.5rem;
    color: white;
    transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

.footer-bottom p {
    margin: 0;
    font-size: 1rem;
}