/* styles.css */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 60px; /* Adjust this value based on the height of your header */
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white; /* Ensure the header has a background color */
    z-index: 1000; /* Ensure the header stays above other content */
    background: #004080;
    color: #fff;
    padding: 10px 0;
}
header .logo {
    font-size: 2.2em;
    font-weight: bold;
    display: block;
    font-family: 'Georgia', serif; /* Change the font family */
    text-align: center; /* Center the logo */
    position: relative; /* Change to relative */
    margin: 0 auto; /* Center the logo */
    transform: translateX(0); /* Remove the translateX */
}
header nav {
    display: inline-block;
    float: left;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline-block;
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

header .contact-info {
    text-align: right;
    font-size: 1.0em;
    margin-top: -00px; /* Adjust this value as needed */
    color: #fff;
    float: right; /* Align to the right */
}

/* Hero Section */
.hero {
    height: 100vh; /* Full-screen height */
    background: url('website background of a house by the sea.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative; /* Add this line */
}


.hero h2 {
    font-size: 2.5em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.2em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.btn-primary {
    background: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    background: #f4f4f4;
    padding: 20px 0;
    text-align: center;
}

.contact h2 {
    margin-bottom: 10px;
}

.contact p {
    font-size: 1.2em;
    color: #333;
}

/* Footer */
footer {
    background: #004080;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

footer .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

footer .footer-links li {
    margin: 0 10px;
}

footer .footer-links li a {
    color: #fff;
    text-decoration: none;
}
