/* Modern Home Page Styles */
:root {
    --primary-color: #0A2342;      /* Kept dark blue for primary */
    --secondary-color: #2CA4D6;    /* Kept blue for secondary */
    --accent-color: #2CA4D6;       /* Changed to match logo's red color */
    --text-color: #333333;         /* Kept dark gray for text */
    --background-color: #F4F4F4;   /* Kept light gray for background */
    --white: #FFFFFF;              /* White */
    --light-gray: #EEEEEE;         /* New light gray for container backgrounds */
    --header-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Added shadow for header definition */
}

.FutureTense {
	font-family: FutureTense;
    font-weight: 100;
    text-transform: lowercase;
}

main {
    width: auto;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--background-color);
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

/* Header Styles */
header {
    background-color: var(--white); /* Changed from primary-color to white */
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Added subtle shadow for definition */
}

.site-logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.site-logo a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.2;
}

.logo-text {
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.logo-subtext {
    color: var(--accent-color);
    font-size: 0.8rem;
    margin-top: -5px;
}

header nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

header nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav ul li {
    margin: 0 15px;
    font-size: 1.30rem;
}

header nav ul li a {
    color: var(--primary-color); /* Changed from white to primary color */
    text-decoration: none;
    font-weight: 100;
    transition: color 0.3s ease;
    position: relative;
}

.site-logo img {
    max-height: 60px; /* Adjust based on your logo size */
    width: auto;
}

header nav ul li a:hover, header nav ul li a.active {
    color: var(--accent-color);
}

header nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

/* Hero Section */
.hero {
    background-color: var(--background-color);
    padding: 4rem 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 3rem;
}

.hero h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.hero-subtitle {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.services-section h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.service-grid, .services-section .service-category {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-category {
    background-color: var(--background-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-category ul {
    list-style-type: none;
    padding: 0;
}

.service-category ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.cta-section {
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #E74C3C;
    transform: translateY(-3px);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: var(--white); /* Changed from primary-color to white */
    color: var(--primary-color); /* Changed text color */
    border-top: 1px solid rgba(0, 0, 0, 0.1); /* Added subtle top border */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1168px) {
    .site-logo {
        position: static;
        text-align: center;
        margin-bottom: 10px;
        transform: none;
    }

    header {
        flex-direction: column;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .service-grid, .services-section .service-category {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

.accent-text {
    color: var(--accent-color);
    font-weight: 600;
}

.footer-accent-text {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-img {
    max-height: 60px;
    width: auto;
    margin-bottom: 10px;
}

.accent-text {
    color: var(--accent-color);
    font-weight: 100;
}

.footer-accent-text {
    color: var(--primary-color);
    font-weight: 600;
}
