/**
 * Layout styles
 * Header, navigation, and footer
 */

/* Header */
header {
    background: #fff;
    border-bottom: 3px solid #000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-order-btn {
    background: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: lowercase;
    border: 2px solid #000;
    transition: all 0.2s ease;
}

.nav-order-btn:hover {
    background: #fff;
    color: #000;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    text-transform: lowercase;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    border: 2px solid #000;
}

/* Footer */
footer {
    background: #f5f5f5;
    padding: 3rem 0 2rem;
    border-top: 3px solid #000;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: lowercase;
    border-bottom: 2px solid #000;
    padding-bottom: 0.5rem;
}

.footer-section p, .footer-section a {
    color: #000;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #ccc;
    font-size: 0.9rem;
}
