/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

html, body {
    margin: 0;
    padding: 0; 
    width: 100%; 
    overflow-x: hidden; 
}

header {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Syncopate', sans-serif;
    font-weight: 900;
    font-size: 23px;
    color: white;
    z-index: 10;
}

header a {
    color: white;
    text-decoration: none;
}

nav {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: Arial, sans-serif;
}

nav a {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); 
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.bg-image {
    background-image: url('images/background.png'); 
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
    width: 100%; 
}

.center-text h1 {
    font-size: 46px;
    color: white;
    font-family: 'Roboto', sans-serif;
    max-width: 950px;
    margin: 0 auto;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); 
}

.buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px;
    font-size: 18px;
    color: white;
    background-color: #007BFF;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #0056b3;
}

footer {
    background-color: #007BFF;
    color: white;
    text-align: center;
    padding: 10px 20px;
    position: relative; 
    bottom: 0;
    width: 100%;
    margin-top: auto; 
}

.bg-header {
    background-image: url('images/background.png'); 
    background-size: cover;
    background-position: center;
    height: 400px; 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.page-title h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); 
    margin: 0;
    z-index: 2; 
}


.content {
    background-color: white;
    padding: 20px;
    margin: -50px auto 0;
    width: 80%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    border-radius: 10px;
}

.content h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.content p {
    font-size: 16px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form label {
    font-size: 14px;
    font-weight: bold;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    align-self: flex-start;
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #0056b3;
}

.responsive-image {
            max-width: 200px;
            height: auto; 
            display: block; 
            margin: 0; 
        }

.honeypot-label, .honeypot-input {
    position: absolute;
    left: -9999px;
}