/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(145deg, #e0eafc, #cfdef3);
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(#e6bf83, #deb887, #d2b48c);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header img {
    width: 190px;
}

.search-bar-header {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-bar-header input[type="text"] {
    width: 60%;
    padding: 10px;
    font-size: 1em;
    border-radius: 100px;
    border: 1px solid #ddd;
}

.search-bar-header button {
    padding: 10px 20px;
    background: linear-gradient(145deg, #ff7f50, #ff4500);
    color: white;
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
}

nav ul {
    list-style: none;
    display: flex;
    gap:30px;
}

nav ul li a {
    display: flex;
}

nav ul li a {
    text-decoration: none;
    padding: 10px 20px;
    background: #008CBA;    
    color: white;
    border: none;
    border-radius: 500px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    margin-left: 10px;
    cursor: pointer;
    color: white;
    font-size: 1.1em;
    font-weight: bold;
}

nav ul li a:hover {
    color: #f0f0f0;;
}

nav .auth-buttons {
    display: flex;
    flex-direction: column;
    margin-left: 500px;
}

nav .auth-buttons button {
    padding: 10px 150px;
    background: linear-gradient(145deg, #ff7f50, #ff4500);
    color: white;
    border: none;
    border-radius: 500px;
    cursor: pointer;
    margin-top: 5px; /* Space between buttons */
}

nav .auth-buttons button:hover {
    background: #f0f0f0;
}

.banner {
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.banner h1 {
    font-size: 4em;
}

.content {
    padding: 20px;
}

.images {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.images img {
    width: 20%;
    border-radius: 100px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 10px;
    background: linear-gradient(#e6bf83, #deb887, #d2b48c);
    color: dark black;
}

footer p {
    margin: 5px 0;
}

.cta {
    background: linear-gradient(145deg, #ff7f50, #ff4500);
    padding: 15px 30px;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
}

.cta:hover {
    background: linear-gradient(145deg, #ff4500, #ff7f50);
}

form {
    display: flex;
    flex-direction: column;
}

form input, form textarea {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
