/* about.css */

/* Reset default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1e1e1e; /* Dark background for consistency */
    color: #e0e0e0; /* Light gray text for readability */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Navbar styling */
#navbar {
    background-color: rgb(40, 40, 40); /* Darker navbar background */
    padding: 10px;
}

#navbar ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
}

#navbar ul li a {
    text-decoration: none;
    color: #e0e0e0; /* Light gray text */
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

#navbar ul li a:hover {
    color: #ffd369; /* Hover effect */
}

#navbar ul li#buy-coffee a {
    display: flex;
    align-items: center;
    font-size: 1.1em; /* Consistent size */
    text-decoration: none;
}

#navbar ul li#buy-coffee img {
    width: 18px; /* Adjust image size */
    height: 18px;
    margin-left: 8px; /* Space between text and image */
    transition: transform 0.3s ease;
    border-radius: 50px;
}

#navbar ul li#buy-coffee a:hover img {
    transform: scale(1.1);
}

/* Header styling */
header {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #4a4a8a; /* Blue background for header */
    color: #fff;
}

/* Main section styling */
main {
    padding: 1.5rem;
    background-color: #333333; /* Darker background for main section */
    border-radius: 8px;
    margin: 1rem auto;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#intro {
    margin: 1rem 0;
}

#intro p {
    color: #e0e0e0; /* Readability */
}

/* Responsive styling */
@media (max-width: 768px) {
    body {
        font-size: 0.9rem;
    }

    main {
        padding: 1rem;
        margin: 1rem 0.5rem;
    }
}

/* Trademark styling */
.trademark {
    position: fixed;
    bottom: 10px;
    right: 10px;
    color: #e0e0e0;
    font-size: 0.8em;
    opacity: 0.6;
}
