/* Global styles for Weston.NYC */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700;900&display=swap');

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base body styles */
body {
    background: #F8F7F4;
    color: #0A0A0A;
    min-height: 100vh;
}

/* Fixed header bar */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    background: #F8F7F4;
    border-bottom: 2px solid #0A0A0A;
    z-index: 100;
}

/* Site title styles */
.site-title {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0A0A0A;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1;
}

.site-title a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.site-title a:hover {
    opacity: 0.6;
}

/* Mobile responsive header */
@media (max-width: 768px) {
    header {
        padding: 16px 20px;
    }

    .site-title {
        font-size: 1.25rem;
    }
}
