/* Main Styles File - Core styles with component imports */

/* Component Imports - Must be at the top */
@import url('hero-component.css');
@import url('services-component.css');
@import url('contact-component.css');
@import url('responsive.css');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: black;
    background-color: white;
}

/* Header and Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #F5BE45;
}

/* About Section */
.about {
    padding: 80px 5%;
    background-color: white;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: black;
}

.about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: black;
    color: white;
    padding: 2rem 5%;
    text-align: center;
}

.copyright {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.attribution-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

footer a {
    color: #F5BE45;
    text-decoration: none;
    font-size: 0.9rem;
}

footer a:hover {
    color: white;
}