/* ==========================================================================
   LAYOUT.CSS
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 300;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 var(--spacing-md);
    position: relative;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-footer {
    padding: var(--spacing-md) 0;
    background-color: var(--color-bg);
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer__nav {
    display: flex;
    gap: var(--spacing-md);
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

.site-main {
    width: 100%;
    min-height: calc(100vh - var(--header-height));
    box-shadow: 
        inset 0 60px 40px -40px rgba(85, 107, 47, 0.12),
        inset 0 -60px 40px -40px rgba(85, 107, 47, 0.12);
}