/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
small {
    color: #666;
}
.description {
    color: #666;
    font-size: 1.1em;
    font-weight: 300;
    margin-bottom: 0;
}
/* ==========================================================================
   LAYOUT
   ========================================================================== */
/* Blog list spacing */
.row {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}
.row:last-child {
    border-bottom: none;
}
.row div:last-child {
    text-align: right;
}
/* Post footer */
.post-footer {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: 3rem;
    text-align: right;
}
/* ==========================================================================
   NAVIGATION
   ========================================================================== */
/* Base navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
    position: relative;
}
#menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    padding: 0.5rem;
}
#menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
/* Mobile navigation */
@media (max-width: 599px) {
    #menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--light);
        border: 1px solid #eee;
        padding: 1rem;
        z-index: 100;
    }
    
    #menu.mobile-open {
        display: block;
    }
    
    #menu li {
        margin: 0.5rem 0;
    }
    
    #menu li a {
        text-decoration: none;
        color: var(--dark);
        display: block;
        padding: 0.5rem 0;
    }
}
/* Desktop navigation */
@media (min-width: 600px) {
    #menu {
        display: flex;
        gap: 1.5rem;
    }
    
    #menu li a {
        text-decoration: none;
        padding: 0.5rem 0;
        color: var(--dark);
        border-bottom: 2px solid transparent;
        transition: border-color 0.2s ease;
    }
    
    #menu li a:hover {
        border-bottom-color: var(--dark);
    }
    
    #menu-toggle {
        display: none;
    }
}

/* ==========================================================================
   LOGO
   ========================================================================== */
.logo {
    color: #c2064c;
    font-size: 4rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.logo:hover {
    text-decoration: none;
    color: #c2064c;
    transform: rotate(15deg) scale(1.1);
}