/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #FFFFFF;
    color: #1F2937;
    scroll-behavior: smooth;
}

/* Header (Hero) */
header.hero {
    background: url('https://source.unsplash.com/random/1600x900?technology') no-repeat center/cover;
    height: 60vh;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    position: relative;
}

header.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 138, 0.7);
}

header.hero .title-container {
    position: relative;
    text-align: center;
}

header.hero .logo {
    width: 200px; /* Larger logo size */
    height: auto;
    margin: 1rem 0;
}

header.hero .subtitle {
    font-size: 3rem; /* Swapped to larger size */
    font-weight: 400;
    margin-bottom: 1rem; /* Space below subtitle */
}

header.hero h1 {
    font-size: 1.5rem; /* Swapped to smaller size */
    margin-top: 1rem; /* Space above main title */
}

/* About Section */
.about {
    background-color: #F9FAFB;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.about h2 {
    font-size: 2.5rem;
    color: #1E3A8A;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Focus Areas */
.focus-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.focus-item {
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.focus-item:hover {
    transform: translateY(-5px);
}

.focus-item span {
    font-size: 2rem;
    color: #14B8A6;
    display: block;
    margin-bottom: 1rem;
}

/* Connect Section */
.connect {
    background-color: #F9FAFB;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.connect h2 {
    font-size: 2.5rem;
    color: #1E3A8A;
    margin-bottom: 1.5rem;
    text-align: center;
}

.connect a {
    color: #F28C38;
    text-decoration: none;
    font-weight: 600;
}

.connect a:hover {
    color: #14B8A6;
}

/* Footer */
footer {
    background-color: #1F2937;
    color: #FFFFFF;
    text-align: center;
    padding: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header.hero {
        height: 50vh;
        min-height: 300px;
    }

    header.hero .logo {
        width: 150px; /* Reduced logo size on mobile */
    }

    header.hero .subtitle {
        font-size: 2rem; /* Adjusted for mobile */
    }

    header.hero h1 {
        font-size: 1.2rem; /* Adjusted for mobile */
    }

    .about, .connect {
        padding: 1.5rem;
    }

    .focus-areas {
        padding: 3rem 1rem;
    }
}
