/* --- Basic Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Navigation --- */
header {
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f39c12; /* Sunbeam yellow/orange */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f39c12;
}

/* --- Hero Section --- */
.hero {
    /* Once you upload hero.jpg, you can add it here as a background image */
    background-color: #f4f7f6; 
    text-align: center;
    padding: 6rem 20px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: #f39c12;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #d68910;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 1.5rem;
    background: #2c3e50;
    color: #ffffff;
    margin-top: auto; /* Pushes footer to the bottom */
}
