/*
Theme Name: Caffe
Theme URI: http://example.com/caffe
Author: Your Name
Description: A minimalist, high-caffeine WordPress theme featuring Open Sans and Nothing You Could Do fonts.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: caffe
*/

body {
    font-family: 'Open Sans', sans-serif;
    color: #332a24;
    background-color: #fdfaf7; /* Creamy coffee background */
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

/* Handwritten style for Headings */
h1, h2, h3, h4, .site-title {
    font-family: 'Nothing You Could Do', cursive;
    font-weight: normal;
    color: #6f4e37; /* Coffee brown */
}

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

header {
    border-bottom: 2px solid #eee;
    margin-bottom: 40px;
    text-align: center;
    padding: 20px 0;
}

header h1 a {
    text-decoration: none;
    color: #6f4e37;
    font-size: 2.5rem;
}

/* Navigation */
nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: #6f4e37;
    font-weight: 700;
    font-size: 1.1rem;
}

article {
    margin-bottom: 40px;
}

article h2 a {
    text-decoration: none;
    color: #6f4e37;
}

footer {
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #eee;
}

/* Footer Styles */
.site-footer {
    background-color: #0e0802; /* Very dark coffee/black */
    color: #c5a059; /* Gold/Brass text color */
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 40px;
}

/* Contact Row */
.footer-contact-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.contact-icon i, .contact-icon svg {
    font-size: 20px;
}

/* Social Icons */
.footer-social-row {
    margin-bottom: 40px;
}

.social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #c5a059;
    color: #0e0802 !important; /* Dark icon on gold background */
    border-radius: 50%;
    margin: 0 8px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-circle:hover {
    opacity: 0.8;
}

/* Bottom Legal Menu */
.footer-legal-links {
    margin-bottom: 20px;
}

.footer-legal-links a {
    color: #fff; /* White as per design */
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
}

/* Divider & Copyright */
.footer-divider {
    border: 0;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    margin: 20px auto;
    width: 80%;
}

.footer-copyright {
    color: #fff;
    font-size: 13px;
    margin-top: 15px;
}
