/* ========================================
   LOGO SIZE ADJUSTMENTS
   ======================================== */

/* Increase logo size on desktop */
.nav .logo img {
    height: 90px; /* Reduced from 160px to prevent covering content */
    width: auto;
    transition: transform 0.3s ease;
}

.nav .logo:hover img {
    transform: scale(1.05);
}

/* Tablet size */
@media (max-width: 1024px) {
    .nav .logo img {
        height: 80px;
    }
}

/* Mobile - keep reasonable for space */
@media (max-width: 768px) {
    .nav .logo img {
        height: 60px;
    }
}

/* Extra large screens - huge logo */
@media (min-width: 1440px) {
    .nav .logo img {
        height: 100px;
    }
}
