/* styles.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}


.whatsapp-support {
    position: fixed;
    bottom: 5px;
    left: 10px;
    z-index: 9999;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

header {
    background-color: #f39c12;
    color: #fff;
    padding: 5px 0;
}


header h1 {
    font-size: 2.1em;
    margin-left: 75px;

}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

nav ul {
    list-style: none;
    display: flex;

}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
  font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #000;

}

.auth-buttons .btn {
    background: #f39c12;
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    margin-left: 10px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.auth-buttons .btn:hover {
    background: #000;
}

.hero {
    background: url('https://source.unsplash.com/1600x900/?nature,water') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    margin-top: 20px;

}

.hero-content {
    background: #f39c12;
    padding: 20px;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 1.8em;
    margin-bottom: 10px;

}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero a {
  font-size: 17px;
  color: #fff;
  border-radius: 3px;

}

.hero a:hover{
  color: #000;
}

.content-section {
    background-color: #fff;
    padding: 40px 20px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    color: #f39c12;
    font-size: 2.5em;
    margin-bottom: 20px;

}

.service {
    margin-bottom: 20px;
}

.advert-content {
    background: #f39c12;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 5px;
}

form input,
form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    width: 100%;
    padding: 10px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background: #555;
}

footer {
    background: #f39c12;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

.close:hover {
    color: #000;
}
