/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #2c2c2c;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Hero Section with Background */
.hero {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Images for Pages */
.hero {
    background-image: url('images/hero.jpg'); /* Default Home Background */
}

.about-hero {
    background-image: url('images/about.jpg'); /* About Page Background */
}

.contact-hero {
    background-image: url('images/contact.jpg'); /* Contact Page Background */
}

/* Dark Overlay for Readability */
.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    width: 100%;
    text-align: center;
}

/* Larger Logo */
.large-logo {
    width: 250px;
    height: auto;
    margin-bottom: 20px;
}

/* Navigation */
nav {
    margin-top: 10px;
}

nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1.2rem;
    margin: 0 15px;
}

nav a:hover {
    color: #ffffff;
}

/* Main Content */
.content {
    padding: 2rem;
}

/* Footer */
footer {
    background-color: #3e4d5c;
    padding: 1rem;
    font-size: 0.85rem;
    color: #aaaaaa;
}