/* Light styling for Bloom Cafe */

body {
    font-family: Google Sans Text, Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #0a4daa; /* Main Accent Color */
    font-weight: 300; /* Light */
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    text-align: center; /* Centered */
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    text-align: center;
    padding: 20px 0;
}

.logo {
    max-width: 350px;
    height: auto;
}

section {
    margin-bottom: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

h1, h2, h3 {
    color: #0a4daa;
    font-weight: 300;
}

.menu-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.hours ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.hours li {
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
}

.events-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
}

.email-container {
    margin: 30px 0;
}

.email-link {
    font-size: 1.5em;
    color: #0a4daa;
    text-decoration: none;
    font-weight: 400;
    border: 2px solid #0a4daa;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.email-link:hover {
    background-color: #0a4daa;
    color: #fff;
    box-shadow: 0 4px 10px rgba(10, 77, 170, 0.2);
}

.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: #0a4daa;
    font-size: 2em;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #083a8a;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #777;
}
