/* General Body Styles */
body {
    font-family: "Noto Sans", sans-serif;
    background-color: #f8fafc; /* bg-slate-50 */
    color: #111418;
    margin: 0;
    line-height: 1.6;
}

/* Layout Container */
.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header and Navigation */
header {
    background-color: white;
    border-bottom: 1px solid #f0f2f4;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    container: container;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #111418;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #1173d4; /* A shade of blue */
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    background-image: url('../images/image1.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
}

/* Main Content */
main {
    padding: 4rem 0;
}

/* Footer */
footer {
    background-color: #111418;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer .contact-icons a {
    margin: 0 1rem;
    display: inline-block;
}

footer .contact-icons img {
    width: 32px;
    height: 32px;
}

/* Hero CTA Button */
.hero-cta {
    display: inline-block;
    background-color: #1173d4;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 2rem;
    transition: background-color 0.3s, transform 0.3s;
}

.hero-cta:hover {
    background-color: #0c5aa6;
    transform: translateY(-3px);
}
