/* =====================================================
   GLOBAL COMPONENTS CSS
   Shared styles for components used across all pages
   ===================================================== */

/* Logo Header Button */
.logo-header {
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 99px;
    height: 99px;
    display: block;
}

.logo-header:hover {
    transform: scale(1.05);
}

.logo-link {
    display: block;
    width: 100%;
    height: 100%;
}

.header-logo {
    width: 75px;
    height: 75px;
    object-fit: contain;
    display: block;
}

/* Video Button */
.video-button {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 99px;
    height: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #3498db;
}

.video-button:hover {
    transform: scale(1.05);
    background: #3498db;
    color: white;
}

.video-button-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.video-button i {
    font-size: 32px;
}

.video-button span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Tablet Responsive (768px) */
@media (max-width: 768px) {
    .logo-header, .video-button {
        top: 15px;
        width: 80px;
        height: 80px;
        padding: 10px;
    }
    
    .logo-header {
        left: 15px;
    }
    
    .video-button {
        right: 15px;
    }
    
    .header-logo {
        width: 60px;
        height: 60px;
    }
    
    .video-button i {
        font-size: 26px;
    }
    
    .video-button span {
        font-size: 10px;
    }
}

/* Mobile Responsive (480px) */
@media (max-width: 480px) {
    .logo-header, .video-button {
        width: 70px;
        height: 70px;
        padding: 8px;
    }
    
    .header-logo {
        width: 54px;
        height: 54px;
    }
    
    .video-button i {
        font-size: 22px;
    }
    
    .video-button span {
        font-size: 9px;
    }
}