/* Basic styling for the motivational quote site */

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
        Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #333;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.navbar .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.nav-links li a:hover {
    opacity: 0.8;
}

.hero {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #ececec;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.quote-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
}

.quote-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.5;
}

.quote-button {
    background-color: #007acc;
    border: none;
    border-radius: 4px;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.quote-button:hover {
    background-color: #005fa3;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero h1 {
        font-size: 2rem;
    }
}

.quote-author {
    font-style: italic;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: #555;
}

.ads-section {
    margin: 2rem auto;
    max-width: 728px;
    text-align: center;
}
