/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5; /* Light grey background */
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff; /* White background for header */
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px; /* Smaller and attractive size */
    width: auto; /* Maintain aspect ratio */
}

.brand-name {
    font-size: 1.8em;
    color: #0078D4; /* Blue color for brand name */
    margin-left: 10px;
}

.navbar {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex: 1;
    padding-left: 20px;
}

.navbar a {
    text-decoration: none;
    color: #333;
    background-color: #e0e5ec;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 6px 6px 10px #b8bcc2, -6px -6px 10px #ffffff;
    transition: all 0.3s ease;
}

.navbar a:hover {
    background-color: #d1d9e6;
}

/* Search Bar and Buttons */
.search-bar {
    padding: 10px;
    border-radius: 20px;
    border: none;
    background-color: #e0e5ec;
    box-shadow: inset 5px 5px 10px #b8bcc2, inset -5px -5px 10px #ffffff;
    margin-left: 20px;
    margin-right: 10px;
}

.login-btn, .signup-btn {
    background-color: #0078D4; /* Light blue */
    color: white; /* White text */
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    box-shadow: 6px 6px 10px #b8bcc2, -6px -6px 10px #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.login-btn:hover, .signup-btn:hover {
    background-color: #0056a3; /* Darker blue on hover */
}

.container {
    padding: 20px;
    text-align: center;
}

.container h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.container p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #555;
}

.glossy {
    background-color: #ffffff; /* White background for content area */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    max-width: 1000px;
    margin: 20px auto;
}

/* Image Description Styling */
.image-description {
    margin-bottom: 30px;
}

.image-description img {
    width: 100%;
    height: auto;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 15px;
    box-shadow: 8px 8px 16px #b8bcc2, -8px -8px 16px #ffffff;
}

.image-description h2 {
    font-size: 1.5em;
    margin: 20px 0;
    color: #333;
}

.image-description p {
    font-size: 1.1em;
    color: #555;
}

/* Footer */
.footer {
    margin-top: auto;
    background-color: #e0e5ec;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer p {
    color: #333;
}

@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .search-bar {
        margin-left: 0;
    }
}
