/* styles.css */
body {
    font-family: 'Arial', sans-serif; /* Clean font */
    margin: 0;
    color: #333; /* Dark text */
    background: #e0f2f7; /* Light blue background - Frutiger Aero */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure footer sticks to bottom */
}

header {
    background: linear-gradient(to right, #4fc3f7, #81d4fa); /* Gradient header */
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

#hero {
    background: url("montana_landscape.jpg"); /* Montana landscape image */
    background-size: cover;
    background-position: center;
    height: 50vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    padding: 20px;
    border-radius: 10px;
}

#projects {
    padding: 40px;
    text-align: center;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.project {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: transform 0.2s ease;
}

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

.project img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

#about, #contact {
    padding: 40px;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto; /* Push footer to bottom */
}

.project-link {
    display: inline-block; /* Make the link behave like a block element */
    background-color: #007bff; /* Blue button color */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px; /* Add some space above the button */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.project-link:hover {
    background-color: #0056b3; /* Darker blue on hover */
}