/* ============ GLOBAL ============ */

/* Custom scrollbar for a sleek look */
body::-webkit-scrollbar {
    width: 8px;
}
body::-webkit-scrollbar-track {
    background: #1a202c; /* primary-blue */
}
body::-webkit-scrollbar-thumb {
    background-color: #f5a623; /* secondary-gold */
    border-radius: 20px;
}

/* Hero background image (for #shop section) */
.hero-bg {
    background-image: url('https://placehold.co/1200x600/1a202c/f5a623?text=Waffles+%26+The+Mrs.+Streaming+from+Anywhere');
    background-size: cover;
    background-position: center;
}

/* Main logo sizing – adjust heights to taste */
.logo-main {
    height: 240px;      /* desktop default */
    width: auto;
    display: block;
}

/* Slightly smaller on medium screens */
@media (max-width: 1024px) {
    .logo-main {
        height: 240px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .logo-main {
        height: 180px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .logo-main {
        height: 160px;
    }
}
