/**
 * Logo & YouTube Section Fixes
 */

/* ===== LOGO FIX - BIGGER SIZE ===== */
.main-logo {
    display: flex;
    align-items: center;
}

.main-logo img {
    height: 100px !important;
    width: auto !important;
    object-fit: contain !important;
}

/* Desktop logo - even larger */
@media (min-width: 992px) {
    .main-logo img {
        height: 120px !important;
    }
}

/* Mobile logo */
@media (max-width: 991px) {
    .main-logo {
        max-width: none !important;
    }
    
    .main-logo img {
        height: 70px !important;
        max-height: 70px !important;
        width: auto !important;
        object-fit: contain !important;
    }
}

/* ===== YOUTUBE SECTION - SMALLER VIDEO ===== */
.youtube-wrapper {
    padding: 60px 0;
}

.youtube-wrapper .youtube-video {
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .youtube-wrapper .col-12 {
        max-width: 900px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .youtube-wrapper .youtube-video {
        max-width: 100%;
    }
}
