/* --- GLOBAL RESPONSIVE FIX --- */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden; /* Prevents side-scrolling */
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    line-height: 1.6;
}

/* --- Navigation --- */
.navbar-brand img {
    max-height: 45px;
    width: auto;
}

.superquote {
    font-family: 'Pacifico', cursive;
    color: #666;
    font-size: 1.1rem;
}

/* --- Carousel Height Fix --- */
.carousel-item img {
    height: 50vh; /* Responsive height based on screen height */
    min-height: 250px;
    max-height: 400px;
    object-fit: cover;
}

/* --- Mobile Fixes --- */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 8px;
    }

    .dropdown-menu {
        border: none;
        text-align: center;
    }
}

/* --- Footer Fix --- */
footer {
    width: 100%;
    margin-top: 3rem;
}
