/* Global Styles */
body, html {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #E0E0E0; /* Light text for dark backgrounds */
    background-color: #121212;
    overflow-x: hidden;
}

h1, h2, h3 {
    color: #9370DB; /* Medium Purple for headings */
}

a {
    color: #9370DB; /* Medium Purple for links and accents */
    text-decoration: none;
}

/* Header */
header {
    background: #1F1F1F;
    color: #E0E0E0;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

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

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin: 0 1rem;
}

header nav ul li a {
    color: #9370DB; /* Medium Purple for navigation links */
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
#hero {
    background: url('hero-bg.png') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFFFFF; /* White text for contrast */
}

#hero .container {
    display: none; /* Ensure no container is displayed over the hero image */
}

#hero h2 {
    font-size: 2.5rem;
    color: #D27D46; /* Light copper for hero heading */
}

#hero p {
    font-size: 1.2rem;
    color: #B87333; /* Copper for hero subheading */
}

/* Section Styling */
section {
    padding: 4rem 1rem;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #1A1A1A;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Contact Form */
#contact form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

#contact form input, #contact form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #444;
    border-radius: 5px;
    background: #222;
    color: #E0E0E0;
    font-size: 1rem;
}

#contact form textarea {
    height: 150px;
    resize: none;
}

#contact form button {
    padding: 0.8rem;
    background: #F0D7C5; /* Light copper for submit button */
    color: #121212; /* Dark text for contrast */
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

#contact form button:hover {
    background: #F0D7C5; /* Copper on hover */
}

/* Footer */
footer {
    background: #1F1F1F;
    color: #E0E0E0;
    text-align: center;
    padding: 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    section {
        padding: 2rem 1rem;
    }

    #hero h2 {
        font-size: 2rem;
    }

    #hero p {
        font-size: 1rem;
    }
}
/* Logo Styling */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem; /* Space between the logo and text */
}

.logo {
    width: 120px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
}